/* Maztech static site styles */
:root {
  --brand-orange: #f15a24;
  --brand-blue: #4a90e2;
  --brand-blue-deep: #0c2340;
  --bg: #fafafa;
  --card: #ffffff;
  --border: #e5e7eb;
  --foreground: #0c2340;
  --muted: #6b7280;
  --secondary: #f3f4f6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.font-display { font-family: 'Poppins', system-ui, sans-serif; }
.text-brand-orange { color: var(--brand-orange); }
.bg-brand-orange { background: var(--brand-orange); }
.text-brand-blue-deep { color: var(--brand-blue-deep); }
.bg-brand-blue { background: var(--brand-blue); }
.border-brand-orange { border-color: var(--brand-orange); }

.shadow-elegant { box-shadow: 0 20px 50px -20px rgba(12, 35, 64, 0.25); }
.text-gradient-brand {
  background: linear-gradient(90deg, var(--brand-orange), #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

img { max-width: 100%; height: auto; display: block; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; padding: 0.625rem 1.25rem; border-radius: 9999px;
  transition: opacity .2s, transform .2s, background .2s, color .2s;
  border: none; cursor: pointer; text-decoration: none; font-size: 0.95rem;
  gap: 0.4rem;
}
.btn-primary { background: var(--brand-orange); color: #fff; }
.btn-primary:hover { opacity: .9; }
.btn-outline {
  background: transparent; color: var(--foreground);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--brand-orange); color: var(--brand-orange); }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; height: 3rem; }

/* Form controls */
.input, .textarea {
  width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--border);
  border-radius: 0.5rem; background: #fff; font: inherit; color: inherit;
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.input:focus, .textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(241,90,36,0.15);
}
.textarea { resize: vertical; min-height: 110px; }

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(250,250,250,0.85);
  border-bottom: 1px solid var(--border);
}

/* Layout helpers */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.section-sm { padding: 4rem 0; }

.bg-secondary { background: var(--secondary); }

/* Grid utilities (minimal) */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2-sm { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.text-center { text-align: center; }
.muted { color: var(--muted); }

/* Eyebrow */
.eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--brand-orange);
}

/* Headings */
h1, h2, h3 { font-family: 'Poppins', sans-serif; margin: 0; line-height: 1.15; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0; }

/* Service / advantage cards */
.tile {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1rem; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -20px rgba(12,35,64,0.25); }
.tile-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tile:hover .tile-img img { transform: scale(1.05); }
.icon-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  background: var(--brand-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
}

/* Gallery */
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; border-radius: 1rem; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.gallery-item:hover img { transform: scale(1.1); }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: 1rem; background: var(--card); overflow: hidden; margin-bottom: 0.75rem; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.1rem 1.25rem; background: transparent;
  border: none; cursor: pointer; font: inherit; font-weight: 600;
  text-align: left; color: inherit;
}
.faq-q:hover { background: var(--secondary); }
.faq-toggle {
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: var(--brand-orange); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  flex-shrink: 0;
}
.faq-a { padding: 0 1.25rem 1.25rem; color: var(--muted); display: none; }
.faq-item.open .faq-a { display: block; }

/* Nav */
.nav-link { color: inherit; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color .15s; }
.nav-link:hover { color: var(--brand-orange); }
.nav-link.active { color: var(--brand-orange); font-weight: 600; }
.nav-list { display: none; gap: 1.75rem; }
@media (min-width: 768px) { .nav-list { display: flex; align-items: center; } }

/* Bullets */
.checklist { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li { display: flex; gap: 0.75rem; align-items: flex-start; }
.check-dot {
  width: 1.25rem; height: 1.25rem; border-radius: 9999px;
  background: var(--brand-orange); color: #fff; font-size: 0.75rem;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.15rem;
}

/* WhatsApp widget */
.wa-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  background: var(--brand-orange); color: #fff; border-radius: 9999px;
  padding: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: inline-flex; transition: opacity .2s;
}
.wa-btn:hover { opacity: 0.9; }

/* Hero glow */
.hero-glow { position: relative; }
.hero-glow::before {
  content: ''; position: absolute; inset: -1.5rem;
  background: var(--brand-orange); opacity: 0.18; filter: blur(60px); border-radius: 9999px; z-index: 0;
}
.hero-glow > img { position: relative; z-index: 1; border-radius: 1.5rem; box-shadow: 0 30px 70px -20px rgba(12,35,64,0.35); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: rgba(243,244,246,0.6); }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--brand-orange); }

/* Star */
.star { color: var(--brand-orange); }

/* Misc */
.rounded-3xl { border-radius: 1.5rem; }
.mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; } .mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; }
.p-5 { padding: 1.25rem; } .p-6 { padding: 1.5rem; } .p-7 { padding: 1.75rem; } .p-8 { padding: 2rem; }
.max-w-xl { max-width: 36rem; } .max-w-2xl { max-width: 42rem; }
.max-w-md { max-width: 28rem; } .max-w-3xl { max-width: 48rem; } .max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

/* Section heading */
.section-heading { max-width: 42rem; margin: 0 auto 3rem; text-align: center; }
.section-heading p { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }

/* Logo */
.logo { height: 5rem; width: 5rem; object-fit: contain; }

/* Hero stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 28rem; margin-top: 2.5rem; }
.stat-n { font-size: 1.5rem; font-weight: 700; color: var(--brand-blue-deep); }
.stat-l { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }

/* Testimonial card */
.t-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; transition: box-shadow .25s; }
.t-card:hover { box-shadow: 0 20px 50px -20px rgba(12,35,64,0.25); }
.t-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: var(--brand-orange);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}

/* Form result banner */
.notice {
  padding: 0.9rem 1rem; border-radius: 0.6rem; margin-top: 0.75rem;
  background: #dcfce7; color: #14532d; font-size: 0.9rem; display: none;
}
.notice.show { display: block; }

/* Hero grid */
.hero-grid { display: grid; gap: 3rem; align-items: center; padding: 4rem 0; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; padding: 5rem 0 6rem; } }
