/* ==========================================================================
   Picha Space — Client-Facing Site Styles
   Colors, fonts and layout mirror the original Picha Space design system.
   ========================================================================== */

@font-face {
  font-family: 'Omnes';
  src: url('fonts/Omnes_Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Omnes';
  src: url('fonts/Omnes_Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Omnes';
  src: url('fonts/Omnes_SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Omnes';
  src: url('fonts/Omnes_Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Omnes';
  src: url('fonts/Omnes_Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #d4af37;
  --primary-foreground: #1a1a1a;
  --secondary: #a0644e;
  --secondary-foreground: #ffffff;
  --background: #f5f5f5;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --muted: #e8e8e8;
  --muted-foreground: #6b6b6b;
  --border: #d0d0d0;
  --radius: 0.25rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Omnes', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Omnes', sans-serif; font-weight: 700; margin: 0; }
p { margin: 0; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: 'Omnes', sans-serif; cursor: pointer; border: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover { background: #c39f2f; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-light {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5d; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: rgba(245,245,245,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.navbar .logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--foreground);
}
@media (max-width: 860px) {
  .nav-links { position: fixed; top: 4rem; left: 0; right: 0; background: var(--background);
    flex-direction: column; align-items: flex-start; padding: 1.5rem; gap: 1.25rem;
    border-bottom: 1px solid var(--border); display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.45);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 620px;
}
.eyebrow {
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 9rem 0 4rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.page-hero p { color: var(--muted-foreground); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(212,175,55,0.1); color: var(--primary);
  border: 1px solid rgba(212,175,55,0.25);
  padding: 0.35rem 0.9rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 1.25rem;
}

/* ---------- Sections ---------- */
section { padding: 5rem 0; }
.section-muted { background: rgba(232,232,232,0.4); }
.section-head { margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-top: 0.5rem; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { border-color: rgba(212,175,55,0.5); }
.card-img { height: 16rem; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.75rem; }
.card-body .tag {
  color: var(--primary); font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 0.5rem; display: block;
}
.card-body h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.card-body p { color: var(--muted-foreground); margin-bottom: 1rem; font-size: 0.95rem; }
.feature-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; padding: 0.2rem 0; }
.feature-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

/* ---------- Process ---------- */
.process-item { display: flex; flex-direction: column; gap: 1rem; }
.process-icon {
  width: 4rem; height: 4rem; border-radius: 0.5rem;
  background: rgba(212,175,55,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
}

/* ---------- Portfolio ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.55rem 1.4rem; border-radius: 999px; font-weight: 500; font-size: 0.9rem;
  background: var(--muted); color: var(--foreground);
}
.filter-btn.active { background: var(--primary); color: var(--primary-foreground); }
.portfolio-item {
  position: relative; overflow: hidden; border-radius: 0.5rem; aspect-ratio: 1/1; cursor: pointer;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
  display: flex; align-items: flex-end; padding: 1.5rem;
  transition: background 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay { background: rgba(0,0,0,0.6); }
.portfolio-overlay .tag { color: var(--primary); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; display: block; }
.portfolio-overlay h3 { color: #fff; font-size: 1.2rem; margin-top: 0.3rem; }
.portfolio-item[hidden] { display: none; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem;
}
.stars { color: var(--primary); font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial p.quote { font-style: italic; color: var(--foreground); opacity: 0.85; font-size: 0.95rem; margin-bottom: 1rem; }
.testimonial .who { border-top: 1px solid var(--border); padding-top: 0.75rem; }
.testimonial .who strong { display: block; font-size: 0.9rem; }
.testimonial .who span { font-size: 0.8rem; color: var(--muted-foreground); }

/* ---------- Contact cards ---------- */
.contact-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.5rem;
  background: rgba(232,232,232,0.35); border-radius: 0.5rem; transition: background 0.2s ease;
}
.contact-card:hover { background: rgba(232,232,232,0.6); }
.contact-icon {
  width: 3rem; height: 3rem; flex-shrink: 0; border-radius: 0.5rem;
  background: rgba(212,175,55,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.contact-card .label { font-size: 0.85rem; color: var(--muted-foreground); }
.contact-card .value { font-weight: 700; font-size: 1.05rem; }

/* ---------- CTA box ---------- */
.cta-box {
  background: rgba(232,232,232,0.3); border: 1px solid var(--border);
  border-radius: 1rem; padding: 2.5rem; text-align: center;
}
.cta-box h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.cta-box p { color: var(--muted-foreground); margin-bottom: 1.25rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Stats ---------- */
.stat-box { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; text-align: center; }
.stat-box .num { font-size: 2.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.4rem; }
.stat-box .lbl { font-size: 0.85rem; color: var(--muted-foreground); font-weight: 500; }

/* ---------- Pricing rows (Services page) ---------- */
.price-box { background: rgba(232,232,232,0.5); border-radius: 0.75rem; padding: 1rem; margin-bottom: 1rem; }
.price-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-foreground); margin-bottom: 0.5rem; display: block; }
.price-row { display: flex; justify-content: space-between; padding: 0.25rem 0; font-size: 0.9rem; }
.price-row .lbl { color: var(--muted-foreground); }
.price-row .val { font-weight: 600; }
.pkg-row { display: flex; justify-content: space-between; padding: 0.4rem 0.5rem; border-radius: 0.5rem; font-size: 0.9rem; }
.pkg-row.highlight { background: rgba(212,175,55,0.12); }
.pkg-row.highlight .lbl { color: var(--primary); font-weight: 700; }
.pkg-row.highlight .val { color: var(--primary); font-weight: 700; }
.price-flat { text-align: center; padding: 0.5rem 0; }
.price-flat .amount { font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.price-flat .note { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.service-note {
  display: flex; gap: 0.5rem; font-size: 0.78rem; color: #92650c;
  background: rgba(245, 190, 60, 0.15); border-radius: 0.5rem; padding: 0.6rem 0.75rem; margin-top: 0.75rem;
}
.category-block { margin-bottom: 3.5rem; }
.category-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.category-head h2 { font-size: 1.5rem; }
.category-block > p { color: var(--muted-foreground); margin-bottom: 2rem; }
.service-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--primary); color: var(--primary-foreground);
  font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 999px;
}
.card.service { position: relative; display: flex; flex-direction: column; }
.card.service .card-body { flex: 1; display: flex; flex-direction: column; }
.service-icon {
  width: 3rem; height: 3rem; border-radius: 0.65rem; background: rgba(212,175,55,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 1rem;
}

/* ---------- Values (About page) ---------- */
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; }
.value-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background: rgba(212,175,55,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--muted-foreground); font-size: 0.9rem; }

.offer-list li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.4rem 0; font-size: 0.92rem; }
.offer-list li::before { content: '✓'; color: var(--primary); font-weight: 700; }

.detail-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; margin-bottom: 1.5rem; }
.detail-card h3 { font-size: 1.05rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.detail-row { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.detail-row:last-child { margin-bottom: 0; }
.detail-row .lbl { font-weight: 600; font-size: 0.9rem; }
.detail-row .val { color: var(--muted-foreground); font-size: 0.88rem; }

/* ---------- Contact form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 0.5rem;
  background: var(--card); font-family: 'Omnes', sans-serif; font-size: 0.95rem; color: var(--foreground);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); }
.required { color: #d32f2f; }
.form-note { font-size: 0.8rem; color: var(--muted-foreground); margin-top: 0.75rem; }

/* ---------- Footer ---------- */
footer { background: rgba(232,232,232,0.4); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-bottom: 2.5rem; }
.footer-grid h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.footer-grid li { padding: 0.35rem 0; font-size: 0.88rem; color: var(--muted-foreground); }
.footer-grid a:hover { color: var(--primary); }
.footer-grid li a { display: flex; align-items: center; gap: 0.5rem; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.75rem; text-align: center; font-size: 0.85rem; color: var(--muted-foreground); }
.footer-bottom a { color: var(--primary); }

/* ---------- Simple page footer (about/services/contact) ---------- */
.mini-footer { padding: 2rem 0; border-top: 1px solid var(--border); text-align: center; }
.mini-footer p { font-size: 0.88rem; color: var(--muted-foreground); }
.mini-footer a { color: var(--primary); }

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  font-size: 1.6rem;
}
.wa-float:hover { background: #1ebe5d; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w { max-width: 680px; }
