/* ═══════════════════════════════════════════════════════════
   WEB DİZAYN PAGE — Specific Styles
   ═══════════════════════════════════════════════════════════ */

/* ── Floating design elements ──────────────────────────── */
.wd-floating-els {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.wd-float-el {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.wd-float-1 { top: 15%; right: 8%; animation: wd-float 8s ease-in-out infinite; }
.wd-float-2 { top: 55%; right: 15%; animation: wd-float 10s ease-in-out infinite 2s; }
.wd-float-3 { bottom: 20%; right: 6%; animation: wd-float 9s ease-in-out infinite 1s; }
.wd-float-4 { top: 30%; right: 28%; animation: wd-float 7s ease-in-out infinite 3s; }

@keyframes wd-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(6deg); }
}

/* ── Why Section ────────────────────────────────────────── */
.wd-why {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
}

.wd-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.wd-why-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 1.25rem 0 1.5rem;
}

.wd-why-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wd-why-point {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.wd-why-point i { font-size: 1.1rem; color: #22C55E; flex-shrink: 0; }

/* ── Browser Mock ───────────────────────────────────────── */
.wd-why-visual { position: relative; }

.wd-browser-mock {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.wd-browser-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: #F5F5F7;
  border-bottom: 1px solid var(--border);
}

.wd-browser-dots {
  display: flex;
  gap: 0.4rem;
}

.wd-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.wd-browser-dots span:nth-child(1) { background: #FF605C; }
.wd-browser-dots span:nth-child(2) { background: #FFBD44; }
.wd-browser-dots span:nth-child(3) { background: #00CA4E; }

.wd-browser-url {
  flex: 1;
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.wd-browser-content { padding: 1.25rem; }

.wd-mock-nav {
  height: 28px;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
  border-radius: 6px;
  margin-bottom: 1rem;
}

.wd-mock-hero {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.wd-mock-h1 {
  height: 20px;
  width: 70%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  animation: wd-shimmer 2s ease-in-out infinite;
}

.wd-mock-p {
  height: 12px;
  width: 45%;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  margin-bottom: 0.875rem;
}

.wd-mock-btn {
  height: 30px;
  width: 100px;
  background: var(--accent);
  border-radius: 20px;
}

@keyframes wd-shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.wd-mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.wd-mock-card {
  height: 52px;
  background: var(--bg-light);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.wd-score-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  background: #000;
  color: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.wd-score-badge i { font-size: 1.25rem; }
.wd-score-badge small { font-size: 0.7rem; color: rgba(253, 177, 31, 0.6); font-weight: 400; }

/* ── Packages ───────────────────────────────────────────── */
.wd-packages {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}

.wd-packages .sp-section-header .section-label { color: var(--accent); }
.wd-packages .section-heading { color: #FFF; }
.wd-packages .section-sub { color: rgba(255, 255, 255, 0.5); }

.wd-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.wd-pkg-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease);
}

.wd-pkg-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.wd-pkg-card--featured {
  background: rgba(253, 177, 31, 0.06);
  border-color: rgba(253, 177, 31, 0.25);
}

.wd-pkg-card--featured:hover {
  background: rgba(253, 177, 31, 0.09);
  box-shadow: 0 20px 60px rgba(253, 177, 31, 0.1);
}

.wd-pkg-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.wd-pkg-icon {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1.125rem;
}

.wd-pkg-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}

.wd-pkg-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 1rem;
}

.wd-pkg-from {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.wd-pkg-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.wd-pkg-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.wd-pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.wd-pkg-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8375rem;
  color: rgba(255, 255, 255, 0.65);
}

.wd-pkg-features i { color: var(--accent); font-size: 0.9rem; flex-shrink: 0; }

.wd-pkg-timeline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.wd-pkg-timeline i { font-size: 0.9rem; }

.wd-pkg-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  text-align: center;
}

.wd-pkg-cta:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFF;
  background: rgba(255, 255, 255, 0.05);
}

.wd-pkg-cta--featured {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 600;
}

.wd-pkg-cta--featured:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(253, 177, 31, 0.35);
}

/* ── Process ────────────────────────────────────────────── */
.wd-process {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
}

.wd-process-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.wd-pf-item {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.wd-pf-step {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-hover);
  margin-bottom: 0.875rem;
}

.wd-pf-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--accent-hover);
  transition: all 0.3s;
}

.wd-pf-item:hover .wd-pf-icon {
  background: var(--accent);
  color: #000;
  transform: scale(1.08);
}

.wd-pf-item h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.wd-pf-item p {
  font-size: 0.8375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.wd-pf-arrow {
  font-size: 1.25rem;
  color: var(--text-secondary);
  padding-top: 2.75rem;
  flex-shrink: 0;
  opacity: 0.4;
}

/* ── What's included ────────────────────────────────────── */
.wd-included {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}

.wd-included-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.wd-included .section-label { color: var(--accent); }
.wd-included .section-heading { color: #FFF; }
.wd-included .section-sub { color: rgba(255, 255, 255, 0.5); }

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

.wd-inc-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  transition: all 0.3s var(--ease);
}

.wd-inc-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.wd-inc-item i {
  font-size: 1.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.875rem;
}

.wd-inc-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 0.375rem;
}

.wd-inc-item p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wd-pkg-grid { grid-template-columns: 1fr 1fr; }
  .wd-pkg-card--featured { order: -1; }
}

@media (max-width: 768px) {
  .wd-why-inner { grid-template-columns: 1fr; }
  .wd-why-visual { display: none; }
  .wd-pkg-grid { grid-template-columns: 1fr; }
  .wd-process-flow { flex-direction: column; align-items: center; }
  .wd-pf-arrow { transform: rotate(90deg); padding: 0; }
  .wd-included-inner { grid-template-columns: 1fr; }
  .wd-inc-grid { grid-template-columns: repeat(2, 1fr); }
  .wd-floating-els { display: none; }
}

@media (max-width: 480px) {
  .wd-inc-grid { grid-template-columns: 1fr; }
}
