/* =========================
   Tone-Blast Global Styles
   ========================= */

:root {
  --brand-yellow: #e6b333;
  --brand-yellow-soft: #f3c960;
  --brand-dark: #1f1f1f;
  --bg-light: #fff8e6;
  --text-main: #222;
  --text-muted: #666;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.16);
  --border-subtle: 1px solid rgba(0, 0, 0, 0.06);
}

/* Simple utilities */

.mt-04 { margin-top: 0.4rem; }
.mt-06 { margin-top: 0.6rem; }

/* Reset */

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

/* =========================
   Header & Navigation
   ========================= */

header {
  background: #ffffff;
  border-bottom: 1px solid #f1e5c7;
  position: sticky;
  top: 0;
  z-index: 20;
}

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

/* Logo pill */

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #fff8e6;
  border: 1px solid #f1e5c7;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.logo-img {
  height: 68px;
  width: auto;
  display: block;
}

/* Nav items */

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.08s ease;
}

nav a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #000;
  transform: translateY(-1px);
}

nav a.active {
  background: var(--brand-yellow);
  color: #000;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   Hero Sections
   ========================= */

.hero {
  background: linear-gradient(135deg, #e6b333, #f8d275);
  color: #221a03;
  padding: 4.2rem 1.5rem 3.8rem;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  margin: 0.5rem 0 0.8rem;
}

.hero p {
  max-width: 540px;
  font-size: 0.98rem;
  opacity: 0.94;
}

/* Hero pills */

.hero-pills {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1.2;
  gap: 0.35rem;
  backdrop-filter: blur(6px);
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d28b08;
}

@media (max-width: 480px) {
  .hero-pill {
    font-size: 0.78rem;
    padding: 0.25rem 0.7rem;
  }
}

.hero-actions {
  margin-top: 1.9rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Page hero */

.page-hero {
  background: linear-gradient(135deg, #e6b333, #f8d275);
  color: #221a03;
  padding: 4.2rem 1.5rem 3.8rem;
}

.page-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.7rem;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  margin-bottom: 0.7rem;
}

.page-hero p {
  max-width: 640px;
  font-size: 0.98rem;
  opacity: 0.94;
}

/* =========================
   Generic Layout & Buttons
   ========================= */

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4.2rem;
}

.section-heading {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}

/* Buttons */

.btn {
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #111;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.35);
}

/* =========================
   Home: Services Grid
   ========================= */

.services-grid {
  display: flex;
  gap: 2.2rem;
  align-items: stretch;
  justify-content: center;
  margin-top: 2.2rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex: 1;
  min-width: 0;
  min-height: 360px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-image {
  width: calc(100% + 3.2rem);
  height: 240px;
  object-fit: cover;
  display: block;
  margin: -1.6rem -1.6rem 1.1rem;
  border-radius: 0.75rem;
}

.service-card h3 {
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Hover behaviors */

@media (hover: hover) and (min-width: 960px) {
  .services-grid .service-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
    z-index: 2;
  }
}

@media (max-width: 959px) {
  .services-grid {
    flex-direction: column;
  }
}

/* =========================
   Service Page: Tags & Main
   ========================= */

.services-tags {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.services-tag {
  background: #f9f4dd;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #222;
}

.services-main {
  max-width: 1200px;
  margin: 3rem auto 5rem;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 1.6rem;
  font-weight: 600;
}

.section-subtitle {
  margin-top: 0.5rem;
  color: #666;
  font-size: 1rem;
}

.body-text p + p {
  margin-top: 0.8rem;
}

.bullet-list {
  margin-top: 1.1rem;
  padding-left: 1.2rem;
}

.bullet-list li {
  margin-bottom: 0.6rem;
}

/* Grids */

.services-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.core-services-layout {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr;
  gap: 1.8rem;
}

@media (max-width: 900px) {
  .services-info-grid,
  .core-services-layout {
    grid-template-columns: 1fr;
  }
}

/* Metrics */

.core-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}

.metric-card {
  background: #fdf8e9;
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.metric-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #555;
  font-weight: 600;
}

.metric-value {
  margin-top: 0.2rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.metric-note {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #555;
}

/* Gallery */

.gallery-strip {
  background: #f8e8aa;
  padding: 1.8rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-cta-strip {
  text-align: center;
  margin-top: 1rem;
}

/* =========================
   Contact Page Layout
   ========================= */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 920px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.detail-group {
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}

.detail-group h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.field-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Map */

.map-section {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.map-header {
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.map-header h2 {
  font-size: 1.1rem;
}

.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* Contact Cards */

.card.contact-card {
  padding: 2.2rem 2.2rem 2.4rem;
}

.card.contact-card .detail-group {
  padding: 1.1rem 1.3rem;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 14px;
  margin-bottom: 1.1rem;
}

.primary-contact-card {
  display: flex;
  flex-direction: column;
  padding: 2.2rem;
  background: var(--brand-dark);
  color: #fff;
  border: none;
}

.primary-contact-card .section-title {
  color: #fff;
}

.primary-contact-card .section-subtitle {
  color: var(--brand-yellow-soft);
  margin-bottom: 1.8rem;
}

.primary-detail {
  margin-bottom: 1.4rem;
}

.primary-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.2rem;
}

.primary-value {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--brand-yellow);
  text-decoration: none;
  border-bottom: 2px solid rgba(230, 179, 51, 0.5);
}

.primary-contact-card .field-hint {
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
}

/* =========================
   Footer
   ========================= */

footer {
  background: #15120f;
  color: #eee;
  padding: 2.6rem 1.5rem 1.6rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  font-size: 0.9rem;
}

.footer-inner h4 {
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer-inner a {
  color: var(--brand-yellow-soft);
  text-decoration: none;
}

.footer-bottom {
  max-width: 1120px;
  margin: 1.6rem auto 0;
  font-size: 0.8rem;
  color: #aaa;
  text-align: center;
}

.footer-madeby {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  opacity: 0.7;
}