@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Canadian+Aboriginal:wght@400;500;600;700&display=swap');

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

:root {
  --accent: #3e9f09;
  --accent-dark: #2d7a06;
  --accent-light: #e8f5e0;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --bg: #ffffff;
  --bg-alt: #f7f8f6;
  --border: #e0e3dc;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.12);
  --radius: 8px;
  --max-w: 1200px;
  --header-h: 72px;
}

html, body {
  direction: rtl;
  text-align: right;
  font-family: 'Noto Sans Canadian Aboriginal', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img { display: block; max-width: 100%; }
a { color: var(--accent-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo span { color: var(--text); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 12px;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--accent);
  background: var(--accent-light);
}

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.menu-toggle svg { width: 28px; height: 28px; }

/* 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(to left, 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 0;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-btns .btn-outline { color: #fff; border-color: #fff; }
.hero-btns .btn-outline:hover { background: #fff; color: var(--accent-dark); }

/* Sections */
section { padding: 80px 0; }
section.bg-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-header .label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

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

.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(-3px);
}
.card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-img.tall { height: 260px; }
.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.95rem;
  margin-bottom: 16px;
}
.card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.card-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Feature boxes */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--accent);
}
.feature-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-item p { color: var(--text-muted); font-size: 0.95rem; }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); }

/* 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.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.stat-label { color: var(--text-muted); font-size: 0.95rem; margin-top: 8px; }

/* Testimonials */
.testimonial {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.testimonial-text {
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { color: var(--text-muted); font-size: 0.85rem; }
.stars { color: #f5a623; margin-bottom: 12px; letter-spacing: 2px; }

/* CTA banner */
.cta-banner {
  background: var(--accent);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 16px; }
.cta-banner p { opacity: 0.9; margin-bottom: 28px; font-size: 1.1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { background: #fff; color: var(--accent); border-color: #fff; }
.cta-banner .btn-primary:hover { background: var(--accent-light); }

/* Page header */
.page-hero {
  background: var(--bg-alt);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 640px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }

/* Content prose */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.5rem; margin: 36px 0 16px; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.85; }
.prose ul, .prose ol { margin: 16px 0 16px 24px; color: var(--text-muted); }
.prose li { margin-bottom: 8px; }

/* Pricing */
.pricing-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card .price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 20px 0;
}
.pricing-card .price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-features {
  list-style: none;
  margin: 24px 0;
  text-align: right;
}
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pricing-features li:last-child { border-bottom: none; }

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--bg);
  border: none;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question .icon { font-size: 1.4rem; color: var(--accent); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* Team */
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .card-body h3 { font-size: 1.1rem; }
.team-role { color: var(--accent); font-size: 0.9rem; font-weight: 500; margin-bottom: 10px; }

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

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p { color: var(--text-muted); font-size: 0.95rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  direction: rtl;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.form-success {
  display: none;
  padding: 16px 20px;
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent-dark);
  margin-bottom: 20px;
  font-weight: 500;
}
.form-success.show { display: block; }

/* Blog */
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.article-hero-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Legal */
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 1.35rem; margin: 32px 0 12px; }
.legal-content p { margin-bottom: 14px; color: var(--text-muted); line-height: 1.85; }
.legal-content ol { margin: 16px 24px 16px 0; color: var(--text-muted); }
.legal-content ol li { margin-bottom: 10px; line-height: 1.75; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.legal-table th, .legal-table td {
  border: 1px solid var(--border);
  padding: 12px 16px;
  text-align: right;
}
.legal-table th { background: var(--bg-alt); font-weight: 600; }
.doc-id {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: #1e2118;
  color: #c8ccc0;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--accent); margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: #c8ccc0;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid #333830;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: #c8ccc0; font-size: 0.85rem; }
.footer-legal a:hover { color: var(--accent); }

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

/* Space detail */
.detail-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.spec-box {
  padding: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.spec-box strong { display: block; color: var(--accent); font-size: 1.2rem; margin-bottom: 4px; }
.spec-box span { font-size: 0.85rem; color: var(--text-muted); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 16px;
  font-size: 1.05rem;
  color: var(--text);
  border-radius: var(--radius);
}
.mobile-nav a:hover { background: var(--accent-light); color: var(--accent); }
.mobile-nav .btn { margin-top: 16px; }

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav, .header-actions .btn-outline { display: none; }
  .menu-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 420px; }
  .hero-content { padding: 48px 0; }
  section { padding: 56px 0; }
  .detail-specs { grid-template-columns: 1fr; }
}
