/*
  MPK Construction & Projects - Pages CSS
  ========================================
  Shared styles for Services, Projects, About, and Contact pages
*/

/* Reveal animation - content visible by default for no-JS users */
/* Override style.css default reveal behavior */
.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When JS adds visible class, apply reveal animation */
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===========================
   PAGE HERO SECTION
   =========================== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,25,41,0.95) 0%, rgba(155,28,28,0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
  max-width: 800px;
}

.page-hero-content .h-eyebrow {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.page-hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.page-hero-content .hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* ===========================
   CONTAINER & LAYOUT
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head.center {
  text-align: center;
}

.section-head .lbl {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-head .lbl.gold {
  color: var(--gold);
}

.section-head .ttl {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--txt2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ===========================
   SERVICES PAGE STYLES
   =========================== */
.services-section {
  padding: 5rem 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 1;
  transform: translateY(0);
  scroll-margin-top: 100px;
}

/* Service card reveal - visible by default */
.service-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13,25,41,0.8) 100%);
}

.service-body {
  padding: 1.75rem;
}

.service-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(155,28,28,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
}

.service-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 0.75rem;
}

.service-body p {
  color: var(--txt2);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-features li {
  color: var(--txt2);
  font-size: 0.9rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.service-features li:last-child {
  border-bottom: none;
}

.btn-service {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 10px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.25s, transform 0.25s;
}

.btn-service:hover {
  background: var(--lred);
  transform: translateX(4px);
}

/* ===========================
   PROJECTS PAGE STYLES
   =========================== */
.projects-stats {
  padding: 3rem 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat-number em {
  font-style: normal;
  color: var(--gold);
}

.stat-label {
  color: var(--txt2);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Filter Tabs */
.projects-filter-section {
  padding: 2rem 0;
  background: var(--bg);
  position: sticky;
  top: 72px;
  z-index: 50;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-btn {
  background: var(--card);
  border: 2px solid var(--border);
  color: var(--txt2);
  padding: 10px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

/* Projects Grid */
.projects-section {
  padding: 4rem 0;
  background: var(--bg);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s, transform 0.4s;
}

/* Project card reveal - visible by default */
.project-card.reveal {
  opacity: 1;
  transform: scale(1);
}

.project-card.reveal.visible {
  opacity: 1;
  transform: scale(1);
}

.project-card.hidden {
  display: none;
}

.project-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-card:hover .project-img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13,25,41,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-category {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.project-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.35rem;
}

.project-info p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.project-view {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.project-card:hover .project-view {
  opacity: 1;
  transform: translateY(0);
}

.project-view svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.project-view:hover {
  background: var(--red);
}

.projects-cta {
  text-align: center;
  padding: 2rem;
  background: var(--bg2);
  border-radius: 12px;
}

.projects-cta p {
  color: var(--txt2);
  margin-bottom: 1.5rem;
}

/* ===========================
   ABOUT PAGE STYLES
   =========================== */
.about-story {
  padding: 3rem 0;
  background: var(--bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-content .lbl {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.story-content .ttl {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--txt2);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight .hl-icon {
  width: 32px;
  height: 32px;
  background: rgba(155,28,28,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-weight: 700;
}

.highlight .hl-text strong {
  display: block;
  color: var(--txt);
  font-size: 1rem;
}

.highlight .hl-text span {
  color: var(--txt2);
  font-size: 0.85rem;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px var(--shadow);
}

.story-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--red);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
}

.badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Values Section */
.values-section {
  padding: 3rem 0;
  background: var(--bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 1;
  transform: translateY(0);
}

/* Value card reveal - visible by default */
.value-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.value-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(155,28,28,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
}

.value-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--txt2);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Certifications */
.certifications-section {
  padding: 3rem 0;
  background: var(--bg);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cert-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--border);
  transition: opacity 0.3s, border-color 0.3s, transform 0.3s;
  opacity: 1;
  transform: translateY(0);
}

/* Cert card reveal - visible by default */
.cert-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.cert-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.cert-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.cert-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon svg {
  width: 36px;
  height: 36px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.cert-icon.ecsa { background: linear-gradient(135deg, #1B2A4A, #2c4a7a); }
.cert-icon.bee { background: linear-gradient(135deg, #C9A84C, #e0c068); }
.cert-icon.cipc { background: linear-gradient(135deg, #9B1C1C, #c0392b); }
.cert-icon.tax { background: linear-gradient(135deg, #27ae60, #2ecc71); }

.cert-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 0.5rem;
}

.cert-card p {
  color: var(--txt2);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.cert-ref {
  display: inline-block;
  background: var(--bg3);
  color: var(--txt);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.cert-note {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg2);
  border-radius: 8px;
}

.cert-note p {
  color: var(--txt2);
  font-size: 0.95rem;
}

/* Team Section */
.team-section {
  padding: 3rem 0;
  background: var(--bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Leadership Quote */
.leadership-quote {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--navy), var(--red));
  border-radius: 12px;
  text-align: center;
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

/* Leadership quote reveal - visible by default */
.leadership-quote.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
}

.leadership-quote.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-content {
  position: relative;
}

.quote-mark {
  font-family: 'Oswald', sans-serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
}

.quote-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  line-height: 1.6;
  margin: 0;
  padding: 1rem;
  font-style: italic;
}

.team-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: opacity 0.3s, transform 0.3s;
  opacity: 1;
  transform: translateY(0);
}

/* Team card reveal - visible by default */
.team-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.team-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-img-wrap {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-placeholder {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 0.35rem;
}

.team-role {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: var(--txt2);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Coverage Section */
.coverage-section {
  padding: 3rem 0;
  background: var(--bg);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.coverage-content .lbl {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.coverage-content .ttl {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 1rem;
}

.coverage-content > p {
  color: var(--txt2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.coverage-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.coverage-stat {
  flex: 1;
  padding: 1.5rem;
  background: var(--card);
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--border);
}

.stat-pct {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-desc {
  color: var(--txt2);
  font-size: 0.85rem;
}

.coverage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.coverage-list li {
  color: var(--txt2);
  font-size: 0.9rem;
}

.coverage-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: var(--card);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 10px 40px var(--shadow);
}

.map-placeholder svg {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.map-placeholder p {
  color: var(--txt2);
  font-size: 0.85rem;
  text-align: center;
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */
.contact-section {
  padding: 5rem 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.contact-form-wrap .lbl,
.contact-info-wrap .lbl {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.contact-form-wrap h2,
.contact-info-wrap h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 1rem;
}

.form-desc,
.info-desc {
  color: var(--txt2);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--txt);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--txt);
  transition: border-color 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-full svg {
  width: 18px;
  height: 18px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

.form-success {
  text-align: center;
  padding: 3rem;
  background: var(--bg2);
  border-radius: 12px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #27ae60;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--txt);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--txt2);
}

/* Contact Info Cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--card);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.25s;
}

.contact-card:hover {
  border-color: var(--red);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.contact-icon.phone { background: var(--red); }
.contact-icon.email { background: var(--gold); }
.contact-icon.whatsapp { background: #25D366; }
.contact-icon.location { background: var(--navy); }

.contact-details h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 0.35rem;
}

.contact-details a {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details span {
  color: var(--txt2);
  font-size: 0.85rem;
}

/* Business Hours */
.hours-box {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.hours-box h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row strong {
  color: var(--txt);
}

/* Company Info */
.company-info {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.company-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 1rem;
}

.company-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-info li {
  color: var(--txt2);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.company-info li:last-child {
  border-bottom: none;
}

.company-info strong {
  color: var(--txt);
}

/* Map Section */
.map-section {
  padding: 5rem 0;
  background: var(--bg2);
}

.map-wrapper {
  margin: 2rem 0;
}

.map-wrapper .map-placeholder {
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 4/3;
}

.map-note {
  color: var(--txt2);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.service-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.area-group h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 1rem;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-tags span {
  background: var(--card);
  color: var(--txt2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--border);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--bg);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--txt);
  transition: color 0.25s;
}

.faq-question:hover {
  color: var(--red);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--red);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--txt2);
  line-height: 1.7;
}

/* ===========================
   CTA SECTION (Shared)
   =========================== */
.cta-section {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
}

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-p {
  background: white;
  color: var(--red);
}

.cta-section .btn-p:hover {
  background: var(--bg);
}

.cta-section .btn-o {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.cta-section .btn-o:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.footer p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: 'Oswald', sans-serif;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  padding: 0.5rem 0;
}

.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s;
}

.footer a:hover {
  color: var(--gold);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-credit {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: white;
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 992px) {
  .story-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .services-grid,
  .values-grid,
  .cert-grid,
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .coverage-stats {
    flex-direction: column;
  }
  
  .coverage-list {
    grid-template-columns: 1fr;
  }
  
  .service-areas {
    grid-template-columns: 1fr;
  }
  
  .filter-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .services-grid,
  .values-grid,
  .cert-grid,
  .team-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Visually Hidden Utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================
   INDEX.HTML FOOTER STYLES
   =========================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.footer-col p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: 'Oswald', sans-serif;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  padding: 0.5rem 0;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--gold);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 0.85rem;
}
