/* Weestaamo — Coworking Istanbul */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #ffbb00;
  --accent-dark: #e0a600;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --bg: #ffffff;
  --bg-alt: #f7f6f3;
  --border: #e2e0db;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.11);
  --radius: 8px;
  --max-w: 1160px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo span { color: var(--accent); }
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: var(--text) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-dark); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav a {
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-nav .legal-links {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav .legal-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  border: none;
  padding: 6px 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
  padding: 80px 24px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-content p {
  font-size: 1.12rem;
  opacity: 0.92;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--accent); color: var(--text); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--text); }

/* Sections */
section { padding: 72px 0; }
section.alt-bg { background: var(--bg-alt); }
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--bg-alt);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.page-hero p { color: var(--text-muted); font-size: 1.08rem; max-width: 560px; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text); }

/* Cards grid */
.card-grid {
  display: grid;
  gap: 28px;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.card-img.tall { height: 240px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-body p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 16px; }
.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { text-decoration: underline; }
.card-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card-price small { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }

/* Feature blocks */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-item { text-align: center; padding: 24px 16px; }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
}
.feature-item h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.feature-item p { color: var(--text-muted); font-size: 0.9rem; }

/* Steps */
.steps { display: grid; gap: 32px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.93rem; }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 32px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.88rem; color: var(--text-muted); }

/* Reviews */
.review-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.review-stars { color: var(--accent); font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; color: var(--text); margin-bottom: 18px; font-style: italic; line-height: 1.7; }
.review-author { font-weight: 600; font-size: 0.9rem; }
.review-role { font-size: 0.82rem; color: var(--text-muted); }

/* Pricing */
.pricing-card {
  padding: 36px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pricing-amount {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 16px 0 4px;
}
.pricing-amount small { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-left: 24px;
  position: relative;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--bg);
  border: none;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* Team */
.team-card { text-align: center; }
.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--border);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--accent-dark); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* Location cards */
.location-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.location-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
.location-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 6px; }
.location-card .location-img {
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.location-card .location-img img { width: 100%; height: 100%; object-fit: cover; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-block h3 { font-size: 1.1rem; margin-bottom: 20px; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail p { font-size: 0.93rem; }
.contact-detail strong { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-form { background: var(--bg-alt); padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); }
.contact-form h3 { margin-bottom: 24px; font-size: 1.15rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.93rem;
  background: var(--bg);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  display: none;
  padding: 16px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  color: #2e7d32;
  font-size: 0.93rem;
  margin-top: 16px;
}
.form-success.show { display: block; }
.map-placeholder {
  height: 320px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* CTA banner */
.cta-banner {
  background: var(--text);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.cta-banner p { opacity: 0.85; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Content pages */
.content-section { padding: 56px 0 72px; }
.content-section .prose { max-width: 760px; }
.content-section .prose.wide { max-width: 900px; }
.prose h2 { font-size: 1.4rem; font-weight: 700; margin: 36px 0 14px; }
.prose h3 { font-size: 1.15rem; font-weight: 600; margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.75; }
.prose ul, .prose ol { margin: 0 0 16px 24px; color: var(--text-muted); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 6px; }
.prose img.content-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 24px 0;
}

/* Legal pages */
.legal-content { max-width: 780px; margin: 0 auto; padding: 56px 24px 72px; }
.legal-content h1 { font-size: 1.8rem; margin-bottom: 8px; }
.legal-content .legal-sub { color: var(--text-muted); margin-bottom: 36px; font-size: 0.95rem; }
.legal-content h2 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 12px; }
.legal-content p { margin-bottom: 14px; color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }
.legal-content ul { margin: 0 0 14px 24px; list-style: disc; color: var(--text-muted); font-size: 0.93rem; }
.legal-content li { margin-bottom: 5px; }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 0.9rem;
}
.legal-content th, .legal-content td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}
.legal-content th { background: var(--bg-alt); font-weight: 600; }
.legal-doc-id {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Split section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-img {
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.compare-table th, .compare-table td {
  border: 1px solid var(--border);
  padding: 14px 18px;
  text-align: left;
}
.compare-table th { background: var(--bg-alt); font-weight: 600; }
.compare-table tr:nth-child(even) td { background: var(--bg-alt); }

/* Footer */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; display: inline-block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; opacity: 0.7; }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 5px 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.6;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a:hover { opacity: 1; }

/* Article meta */
.article-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .card-grid-3, .card-grid-4, .features-row, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-section, .contact-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .card-grid-3, .card-grid-4, .features-row, .stats-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 440px; }
  section { padding: 52px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
