/* ============================================================
   WORKSPACE & CO-WORKING HUB — style.css
   Single stylesheet shared across all pages.

   HOW TO CUSTOMISE:
   • Change brand colors in the :root block below.
   • Every image src is commented with "CHANGE: swap this URL".
   • Every price is wrapped in a <span class="price"> tag —
     search for "price" to find all of them quickly.
   ============================================================ */

/* ── Custom Properties (Brand Colors) ─────────────────────── */
:root {
  --white:        #ffffff;
  --navy:         #2c3e50;   /* Primary text */
  --blue:         #3498db;   /* Accent / buttons */
  --blue-dark:    #2176ae;   /* Button hover */
  --blue-light:   #e8f4fd;   /* Light blue tint */
  --green:        #25d366;   /* WhatsApp green */
  --green-dark:   #1da851;   /* WhatsApp hover */
  --gray-light:   #f4f6f8;   /* Section backgrounds */
  --gray-mid:     #dde3ea;   /* Borders */
  --gray-text:    #5a6a7a;   /* Secondary text */
  --shadow-sm:    0 2px 8px  rgba(44,62,80,.08);
  --shadow-md:    0 6px 24px rgba(44,62,80,.12);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   .22s ease;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

p { color: var(--gray-text); }

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-alt { background: var(--gray-light); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header p {
  max-width: 580px;
  margin: .75rem auto 0;
  font-size: 1.05rem;
}

/* ── Sticky Navigation ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  gap: 1rem;
}

.nav-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .925rem;
  font-weight: 500;
  color: var(--gray-text);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--blue);
  background: var(--blue-light);
}

/* Active page highlight — set by script.js */
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
  font-weight: 600;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  padding: .4rem .7rem;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--navy);
  line-height: 1;
}

/* ── Hero Banner ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 660px;
  padding: 4rem 1.5rem;
  margin: 0 auto 0 calc((100% - 1160px)/2);
}
@media (max-width: 1200px) { .hero-content { margin-left: 1.5rem; } }

.hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.hero-content p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
}

.badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  width: 100%;
  justify-content: center;
}
.btn-whatsapp:hover { background: var(--green-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* ── Feature Strip (3-up icons) ────────────────────────────── */
.features-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.feature-item h3 { margin-bottom: .4rem; }
.feature-item p  { font-size: .925rem; }

/* ── Card Grid ─────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-mid);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ── Card Image ────────────────────────────────────────────── */
/*
  HOW TO SWAP CARD IMAGES:
  Each card has an <img> tag inside .card-img-wrap.
  Simply change the src="..." to your own image URL or file path.
  Recommended size: 800 × 480 px or wider.
*/
.card-img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: var(--blue-light);
  position: relative;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.04); }

.card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: .85rem;
  text-align: center;
  gap: .35rem;
  pointer-events: none;
}
.card-img-placeholder .ph-icon { font-size: 2rem; opacity: .6; }

/* Hide placeholder once real image loads */
.card-img-wrap img.loaded + .card-img-placeholder { display: none; }

/* ── Card Body ─────────────────────────────────────────────── */
.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .65rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}

.card-body h3 { margin-bottom: .75rem; font-size: 1.15rem; }

/* ── Features List inside Card ─────────────────────────────── */
.features-list {
  margin: .5rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  color: var(--gray-text);
}

.features-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Price Block ───────────────────────────────────────────── */
/*
  HOW TO CHANGE PRICES:
  Find the <div class="price-block"> in each card and update
  the <span class="price"> value. You can also change the
  <span class="price-label"> text (e.g. "/ hour", "/ day").
*/
.price-block {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin-bottom: 1.25rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-mid);
}

.price {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
}

.price-label {
  font-size: .875rem;
  color: var(--gray-text);
  font-weight: 400;
}

/* ── WhatsApp Icon SVG ─────────────────────────────────────── */
.wa-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── Info Banner ───────────────────────────────────────────── */
.info-banner {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.5rem;
}
.info-banner h2 { color: var(--white); margin-bottom: .75rem; }
.info-banner p  { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 1.75rem; font-size: 1.05rem; }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-bottom: 1.25rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.contact-item:last-child { margin-bottom: 0; }

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-text); margin-bottom: .2rem; }
.contact-item p  { color: var(--navy); font-weight: 500; font-size: .95rem; }

.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--blue);
  font-size: .9rem;
  text-align: center;
  border: 2px dashed var(--blue);
  overflow: hidden;
}

/* If you paste a real Google Maps embed, make it fill this container */
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

.whatsapp-cta-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ── Page Hero (sub-pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a252f 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.5rem;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo { color: var(--white); font-size: 1.2rem; margin-bottom: .75rem; display: block; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a  { font-size: .9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--blue); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-mid); padding: 1rem 1.5rem; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .nav-container { flex-wrap: wrap; position: relative; }
  .hero-content { padding: 3rem 1.5rem; }
  .features-strip { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3rem 0; }
}
