@charset "UTF-8";
/* ================= VARIABLES ================= */
:root {
  --orange: #ee6426;
  --orange-dark: #d4551f;
  --orange-light: #f5893d;
  --dark: #2c3e50;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #666666;
  --border: #cccccc;
  --radius: 8px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
}

/* ================= GLOBAL ================= */
section {
  padding: 70px 10%;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

p {
  margin-bottom: 14px;
  color: var(--text-muted);
}

a {
  text-decoration: none;
}

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

.highlight {
  color: var(--orange);
  font-weight: 900;
}

.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 6%;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: linear-gradient(185deg, rgba(6, 6, 7, 0.97), #2c3e50);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  flex: 0 0 auto;
  margin-top: 10px;
}

.logo img {
  height: 92px;
  width: auto;
  display: block;
  transition: filter var(--transition);
}

.header.scrolled .logo img {
  filter: brightness(0) invert(1);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(25, 33, 44, 0.78);
  padding: 6px 10px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar a {
  color: var(--white);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.navbar a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  position: relative;
  z-index: 1000;
}

.call-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border: none;
  color: var(--white);
  padding: 11px 40px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(238, 100, 38, 0.35);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.call-btn:hover {
  background: linear-gradient(135deg, var(--orange-light), #ffaa6e);
  box-shadow: 0 5px 18px rgba(255, 150, 80, 0.55);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 6px 4px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 40px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ================= HERO ================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-height: 70vh;
  padding-top: 140px;
  background: var(--white);
}

/* Reduce hero top padding on mobile so text sits closer to header */
@media (max-width: 600px) {
  .hero {
    padding-top: 50px;
    min-height: unset;
  }
}
.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.hero-subtitle {
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: multiply;
}

.map-img {
  width: 100%;
  mix-blend-mode: multiply;
}

/* ================= ABOUT ================= */
.about {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--light-bg);
}

.about-left {
  flex: 1;
}

.about-right {
  flex: 1;
  position: relative;
}

.about-left h2 {
  color: var(--text);
  font-size: 38px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

.about-left h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  opacity: 0.5;
  border-radius: 2px;
}

.about-left p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.about-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.about-right h2 {
  color: var(--orange);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  width: 100%;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

/* On mobile/tablet (stacked layout), reset absolute positioning so the
   "We Proudly Serve Nova Scotia" heading sits above the map image */
@media (max-width: 992px) {
  .about-right {
    position: static;
  }
  .about-right h2 {
    position: static;
    transform: none;
    width: auto;
    text-align: center;
    text-shadow: none;
  }
}
/* On small mobile, center the "We Proudly Serve" heading */
@media (max-width: 600px) {
  .about-right h2 {
    text-align: center;
  }
}
.about-right img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ================= SERVICES ================= */
.services {
  text-align: center;
  background: var(--white);
}

.services h2 {
  color: var(--orange);
}

.service-boxes {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  margin-bottom: 40px;
}

.service {
  flex: 1;
  border: 1px solid ghostwhite;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  background: var(--white);
}

.service:hover {
  transform: translateY(-4px);
  border: 1px solid ghostwhite;
  box-shadow: 0 8px 24px rgba(238, 100, 38, 0.25);
}

.service-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

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

.service-body {
  padding: 24px 24px 28px;
  text-align: center;
}

.service h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text);
}

.service p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

/* ================= PROJECTS ================= */
.projects {
  text-align: center;
  background: var(--light-bg);
}

.projects h2 {
  color: var(--text);
}

.projects-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  margin-bottom: 40px;
}

.project {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--transition), transform var(--transition);
}

.project:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
  border: 1px solid ghostwhite;
}

.project-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.project:hover .project-img img {
  transform: scale(1.04);
  border: 1px solid ghostwhite;
}

.pj-item{:hover
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
  border: 1px solid ghostwhite;
}

/* On mobile single-column layout, show the split image at full width */
@media (max-width: 600px) {
  .project-img--split {
    display: block;
  }
  .project-img--split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .project-img--split img:not(:first-child) {
    display: none;
  }
}
.project p {
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
  text-align: center;
}

/* ================= QUOTE FORM ================= */
.quote {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--white);
}

.quote-left {
  flex: 1;
}

.quote-left h2 {
  color: var(--text);
  margin-bottom: 14px;
}

.quote-left p {
  font-size: 16px;
}

.quote-right {
  flex: 1;
}

.quote form {
  display: flex;
  flex-direction: column;
  background: var(--light-bg);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.quote input,
.quote select,
.quote textarea {
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.quote input:focus,
.quote select:focus,
.quote textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(238, 100, 38, 0.12);
}

.quote textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 4px 14px rgba(238, 100, 38, 0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(238, 100, 38, 0.45);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(238, 100, 38, 0.3);
}

/* ================= CONTACT ================= */
.contact {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  background: var(--light-bg);
}

.contact-left,
.contact-right {
  flex: 1;
}

.contact-left h3,
.contact-right h3 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 12px;
}

.contact-left p,
.contact-right p {
  font-size: 15px;
  margin-bottom: 10px;
}

.contact-right a {
  color: var(--orange);
  transition: color var(--transition);
}

.contact-right a:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

.contact-left img {
  width: 100%;
  margin-top: 16px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-map {
  display: block;
  width: 100%;
  margin-top: 16px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* On mobile, ensure map and its container stretch to full available width */
@media (max-width: 768px) {
  .contact-left,
  .contact-right {
    width: 100%;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: var(--dark);
  color: #ccc;
}

.footer-inner {
  display: flex;
  gap: 40px;
  padding: 60px 10% 40px;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
}

/* On mobile, reduce the gap between footer section titles and their content */
@media (max-width: 600px) {
  .footer-col h4 {
    margin-bottom: 10px;
  }
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  color: #ccc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.footer-links,
.footer-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-services a {
  color: #aaa;
  font-size: 14px;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--orange);
}

.footer-estimate p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 10px;
}

.footer-estimate a {
  color: #aaa;
  transition: color var(--transition);
  text-decoration: none;
}

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

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

.footer-bottom p {
  font-size: 13px;
  color: #888;
  margin-bottom: 0;
}

/* ================= REVIEWS / TESTIMONIALS ================= */
.reviews {
  background: var(--dark);
  text-align: center;
  padding-bottom: 80px;
  overflow: hidden;
}

.reviews-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.reviews h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.reviews-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 48px;
}

.reviews-track-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewsScroll 38s linear infinite;
}

.reviews-track-wrap:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px 28px 28px;
  width: 340px;
  flex-shrink: 0;
  text-align: left;
  transition: border-color var(--transition), background var(--transition);
}
.review-card:hover {
  background: rgba(238, 100, 38, 0.08);
  border-color: var(--orange);
}

.review-stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(238, 100, 38, 0.4);
  letter-spacing: 0;
}

/* ================= WRITE A REVIEW SECTION ================= */
.write-review {
  background: var(--light-bg);
  text-align: center;
  padding: 70px 10%;
}

.write-review-inner {
  max-width: 680px;
  margin: 0 auto;
}

.write-review-header {
  margin-bottom: 40px;
}

.write-review-header h2 {
  color: var(--text);
}

.review-form {
  background: var(--white);
  border-radius: 14px;
  padding: 40px 36px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.review-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.review-form-row .review-form-group {
  flex: 1;
}

.review-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.review-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.req {
  color: var(--orange);
}

.review-form input[type=text],
.review-form textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.review-form input[type=text]:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(238, 100, 38, 0.12);
}

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

/* ---- Interactive Star Rating ---- */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
  padding: 6px 0 2px;
}

.star-rating input[type=radio] {
  display: none;
}

.star-rating label {
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type=radio]:checked ~ label {
  color: var(--orange);
}

.star-rating label:hover {
  transform: scale(1.15);
}

.review-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 4px 14px rgba(238, 100, 38, 0.35);
}
.review-submit-btn:hover {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(238, 100, 38, 0.45);
}
.review-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(238, 100, 38, 0.3);
}

@media (max-width: 600px) {
  .review-form {
    padding: 28px 20px 24px;
  }
  .review-form-row {
    flex-direction: column;
    gap: 0;
  }
  .write-review {
    padding: 48px 5%;
  }
}
/* ================= CALL BTN — ICON ONLY (mobile/tablet) ================= */
/* Desktop: .call-btn-text visible, no pseudo icon */
.call-btn-text {
  display: inline;
}

/* ================= RESPONSIVE — TABLET (≤992px) ================= */
@media (max-width: 992px) {
  .header {
    padding: 2px 5%;
  }
  .navbar a {
    padding: 6px 11px;
    font-size: 13px;
  }
  /* Compact icon-only call button on tablet */
  .call-btn {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .call-btn .call-btn-text {
    display: none;
  }
  .call-btn::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.5 12a19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 3.41 1h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L7.91 8.91A16 16 0 0 0 15.09 16.1l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.5 12a19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 3.41 1h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L7.91 8.91A16 16 0 0 0 15.09 16.1l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: var(--white);
    flex-shrink: 0;
  }
  .hero {
    flex-direction: column;
    min-height: unset;
    padding-top: 150px;
    padding-bottom: 60px;
    text-align: center;
  }
  .hero-text p {
    max-width: 100%;
  }
  .about {
    flex-direction: column;
  }
  .service-boxes {
    flex-wrap: wrap;
  }
  .service {
    flex: 1 1 calc(50% - 12px);
    min-width: 200px;
  }
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote {
    flex-direction: column;
  }
  .quote-left,
  .quote-right {
    width: 100%;
  }
  .contact {
    flex-direction: column;
  }
  .footer-inner {
    flex-wrap: wrap;
    gap: 32px;
    padding: 50px 6% 32px;
  }
  .footer-col {
    flex: 1 1 calc(50% - 16px);
    min-width: 180px;
  }

}
/* ================= RESPONSIVE — MOBILE NAV (≤768px) ================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .header {
    flex-wrap: nowrap;
    padding: 2px 5%;
    position: relative;
  }
  .navbar {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 90%;
    border-radius: 14px;
    padding: 8px;
    gap: 2px;
    position: absolute;
    top: 100%;
    left: 5%;
    z-index: 999;
    background: rgba(25, 33, 44, 0.97);
    margin-top: 4px;
  }
  .navbar.nav-open {
    display: flex;
  }
  .navbar a {
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
  }
  .hero {
    padding-top: 50px;
  }
}
/* ================= RESPONSIVE — SMALL MOBILE (≤600px) ================= */
@media (max-width: 600px) {
  section {
    padding: 48px 5%;
  }
  h2 {
    font-size: 26px;
  }
  .hero-text h1 {
    font-size: 26px;
  }
  .service-boxes {
    flex-direction: column;
  }
  .service {
    flex: 1 1 100%;
  }
  .project-gallery {
    grid-template-columns: 1fr;
  }
  .quote form {
    padding: 24px 18px;
  }
  .footer-inner {
    flex-direction: column;
    padding: 40px 5% 24px;
    gap: 28px;
  }
  .footer-col {
    min-width: 100%;
    text-align: center;
  }
  .footer-links,
  .footer-services {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    padding: 16px 5%;
  }
  .review-card {
    width: 280px;
    padding: 24px 20px 22px;
  }
}
/* ================= SERVICES PAGE HERO ================= */
.services-hero {
  padding: 140px 10% 10px;
  background: var(--white);
  text-align: center;
}
.services-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.services-hero p {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
}

.services-page {
  padding: 40px 10%;
}

/* ================= TAB BAR ================= */
.tab-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 11px 26px;
  border: 2px solid var(--orange);
  border-radius: 50px;
  background: transparent;
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}

.tab-btn:hover {
  background: rgba(238, 100, 38, 0.08);
}

.tab-btn.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(238, 100, 38, 0.35);
}

/* ================= TAB PANELS ================= */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ================= SERVICE PAGE CARDS ================= */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.sp-card {
  border: 1px solid ghostwhite;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.sp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(238, 100, 38, 0.25);
}

.sp-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.sp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.sp-card:hover .sp-card-img img {
  transform: scale(1.04);
}

.sp-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fde8da, #fcd0b4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.sp-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.75;
}

.sp-card-body {
  padding: 22px 22px 26px;
}

.sp-card-body h3 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 8px;
}

.sp-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ================= SERVICES PAGE CTA ================= */
.sp-cta {
  text-align: center;
  margin-top: 8px;
}

/* ================= SERVICES PAGE RESPONSIVE ================= */
@media (max-width: 992px) {
  .sp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-hero {
    padding: 25px 5% 25px;
  }
  .services-page {
    padding: 20px 5%;
  }
  .tab-bar {
    gap: 8px;
  }
  .tab-btn {
    padding: 9px 18px;
    font-size: 13px;
  }
  .sp-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= PROJECTS PAGE HERO ================= */
.projects-hero {
  padding: 140px 10% 40px;
  background: var(--white);
  text-align: center;
}
.projects-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.projects-hero p {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* ================= PROJECTS PAGE SECTION ================= */
.projects-page {
  padding: 40px 10% 70px;
  background: var(--light-bg);
}

/* ================= PROJECTS TAB PANELS ================= */
.pj-tab-panel {
  display: none;
}

.pj-tab-panel.active {
  display: block;
}

/* ================= MASONRY GALLERY ================= */
.pj-masonry {
  column-count: 3;
  column-gap: 16px;
  margin-bottom: 40px;
}

.pj-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--white);
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.pj-item:hover {
  border-color: ghostwhite;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.pj-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition);
}
.pj-item:hover img {
  transform: scale(1.04);
}

.pj-item--tall {
  height: 320px;
}

.pj-item--short {
  height: 220px;
}

/* ================= PROJECT PLACEHOLDER ================= */
.pj-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fde8da, #fcd0b4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--orange);
}
.pj-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.7;
}
.pj-placeholder span {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  opacity: 0.85;
}

/* ================= PROJECTS CTA ================= */
.pj-cta {
  text-align: center;
  margin-top: 8px;
}

/* ================= LIGHTBOX ================= */
.pj-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}
.pj-lightbox.active {
  display: flex;
}
.pj-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  display: block;
}

.pj-lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition), transform var(--transition);
}
.pj-lightbox-close:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* ================= RESIDENTIAL 2-COLUMN GRID ================= */
.pj-masonry--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  column-count: unset;
  column-gap: unset;
}

.pj-masonry--2col .pj-item {
  width: 100%;
  height: 300px;
  margin-bottom: 0;
  position: relative;
}

.pj-masonry--2col .pj-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ================= PROJECTS PAGE RESPONSIVE ================= */
@media (max-width: 992px) {
  .pj-masonry {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .projects-hero {
    padding: 32px 5% 32px;
  }
  .pj-masonry {
    column-count: 1;
  }
  .pj-item--tall,
  .pj-item--short {
    height: 240px;
  }
  .pj-masonry--2col {
    grid-template-columns: 1fr;
  }
}
/* ================= CAREER PAGE HERO ================= */
.career-hero {
  position: relative;
  background: var(--dark);
  padding: 140px 10% 80px;
  text-align: center;
  overflow: hidden;
}
.career-hero::before {
  content: "444";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(160px, 28vw, 320px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.career-hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.career-hero h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.career-hero-sub {
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255, 255, 255, 0.68);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================= JOB LISTINGS ================= */
.career-listings {
  background: var(--light-bg);
  text-align: center;
}

.career-listings h2 {
  color: var(--text);
}

.career-listings-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 44px;
}

.career-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}

.career-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 30px 28px;
  border: 2px solid transparent;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.career-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(238, 100, 38, 0.2);
  transform: translateY(-4px);
}

.career-card-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.career-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #fde8da, #fcd0b4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.career-card-icon svg {
  width: 26px;
  height: 26px;
}

.career-card-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 7px;
}

.career-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0;
}

.career-card > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.career-card-requirements {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.career-card-requirements li {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.career-card-requirements li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.career-apply-btn {
  align-self: flex-start;
}

/* ================= APPLICATION FORM ================= */
.career-apply {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  background: var(--white);
}

.career-apply-left {
  flex: 1;
}
.career-apply-left h2 {
  color: var(--text);
  margin-bottom: 14px;
}
.career-apply-left p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 12px;
  color: var(--text-muted);
}
.career-apply-left a {
  color: var(--orange);
  transition: color var(--transition);
}
.career-apply-left a:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

.career-apply-quote {
  border-left: 4px solid var(--orange);
  padding-left: 20px;
  font-size: 17px;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  margin-top: 28px;
}

.career-apply-right {
  flex: 1;
}
.career-apply-right form {
  display: flex;
  flex-direction: column;
  background: var(--light-bg);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.career-apply-right input,
.career-apply-right select,
.career-apply-right textarea {
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.career-apply-right input:focus,
.career-apply-right select:focus,
.career-apply-right textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(238, 100, 38, 0.12);
}
.career-apply-right textarea {
  resize: vertical;
  min-height: 110px;
}

/* File upload */
.career-file-wrap {
  position: relative;
  margin-bottom: 14px;
}
.career-file-wrap input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin-bottom: 0;
  height: 100%;
}
.career-file-wrap:hover .career-file-label {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(238, 100, 38, 0.12);
  color: var(--text);
}

.career-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.career-file-label svg {
  flex-shrink: 0;
  color: var(--orange);
}

/* Optional label */
.career-optional-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  padding-left: 2px;
}

/* ================= CAREER PAGE RESPONSIVE ================= */
@media (max-width: 992px) {
  .career-cards {
    grid-template-columns: 1fr;
  }
  .career-apply {
    flex-direction: column;
  }
  .career-apply-left,
  .career-apply-right {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .career-hero {
    padding: 120px 5% 60px;
  }
  .career-apply-right form {
    padding: 24px 18px;
  }
}
/* ================= ABOUT PAGE HERO ================= */
.about-pg-hero {
  position: relative;
  background: var(--dark);
  padding: 140px 10% 80px;
  overflow: hidden;
  text-align: center;
}

.about-pg-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(180px, 30vw, 340px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.about-pg-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.about-pg-hero-content h1 {
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.about-pg-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  font-style: italic;
}

.about-pg-divider {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto 28px;
  border-radius: 2px;
}

.about-pg-story {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  max-width: 760px;
  margin: 0 auto;
}

/* ================= LEADERSHIP & COUNTERS ================= */
.about-leadership {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 80px 10%;
  background: var(--white);
}

.about-director {
  flex: 1;
}

.about-director-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.about-director h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
}

.about-director-title {
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.about-director p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-director-quote {
  border-left: 4px solid var(--orange);
  padding-left: 20px;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.about-counters {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.about-counter-item {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px 70px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.about-counter-item:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(238, 100, 38, 0.15);
  transform: translateY(-3px);
}

.about-counter-icon {
  margin-bottom: 12px;
  color: var(--orange);
}
.about-counter-icon svg {
  width: 36px;
  height: 36px;
}

.about-counter-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.about-counter-suffix {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.about-counter-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 0;
}

/* ================= TRIPLE FOUR EDGE — FLIP CARDS ================= */
.about-edge {
  padding: 80px 10%;
  background: var(--light-bg);
  text-align: center;
}

.about-edge h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
}

.about-edge-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.about-flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flip-card {
  height: 280px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 22px;
}

.flip-card-front {
  background: var(--white);
  border: 1px solid ghostwhite;
  color: var(--text);
}
.flip-card-front svg {
  width: 44px;
  height: 44px;
  color: var(--orange);
  margin-bottom: 16px;
}
.flip-card-front h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
}

.flip-hint {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

.flip-card-back {
  background: var(--orange);
  color: var(--white);
  transform: rotateY(180deg);
}
.flip-card-back h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 14px;
}
.flip-card-back p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  margin-bottom: 0;
}

/* ================= DIRECTOR SIGNATURE ================= */
.about-signature {
  position: relative;
  background: var(--dark);
  padding: 80px 10%;
  text-align: center;
  overflow: hidden;
}

.about-sig-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(140px, 25vw, 280px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.about-sig-statement {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  margin-bottom: 24px;
}

.about-sig-name {
  font-family: "Dancing Script", cursive;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 8px;
}

.about-sig-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

.about-sig-line {
  width: 80px;
  height: 2px;
  background: var(--orange);
  margin: 0 auto 32px;
  border-radius: 2px;
  opacity: 0.6;
}

/* ================= ABOUT PAGE RESPONSIVE ================= */
@media (max-width: 992px) {
  .about-leadership {
    flex-direction: column;
    gap: 48px;
  }
  .about-flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .about-pg-hero {
    padding: 120px 5% 60px;
  }
  .about-leadership {
    padding: 60px 5%;
  }
  .about-edge {
    padding: 60px 5%;
  }
  .about-counters {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 auto;
    max-width: 320px;
  }
  .about-counter-item {
    width: 100%;
    box-sizing: border-box;
  }
  .about-flip-grid {
    grid-template-columns: 1fr;
  }
  .flip-card {
    height: 240px;
  }
  .about-signature {
    padding: 60px 5%;
  }
}
/* =================================================================
   TERMS/PRIVACY/FAQ/CREDITS SHARED HERO
   ================================================================= */
.terms-hero {
  position: relative;
  background: var(--dark);
  padding: 100px 10% 60px;
  text-align: center;
  overflow: hidden;
}
.terms-hero::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(160px, 28vw, 320px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.terms-hero-label {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.terms-hero h1 {
  position: relative;
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.terms-hero-sub {
  position: relative;
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.7;
}

.terms-body {
  background: var(--light-bg);
  padding: 50px 10%;
}

.terms-container {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 56px 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

@media (max-width: 600px) {
  .terms-container {
    padding: 56px 30px;
  }
}

/* =================================================================
   FAQ PAGE
   ================================================================= */
.faq-hero::before {
  content: "444";
}

.faq-container {
  padding-top: 48px;
  padding-bottom: 56px;
}

.faq-category {
  margin-bottom: 40px;
}
.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-emoji {
  font-size: 20px;
  line-height: 1;
}

.faq-item {
  border: 1px solid #ebebeb;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s ease, color 0.15s ease;
  font-family: inherit;
  line-height: 1.5;
}
.faq-question:hover {
  background: #fafafa;
  color: var(--orange);
}
.faq-question[aria-expanded=true] {
  color: var(--orange);
  background: #fff8f3;
}
.faq-question[aria-expanded=true] .faq-arrow::after {
  opacity: 0;
  transform: scaleY(0);
}

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s ease;
}
.faq-arrow::before, .faq-arrow::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.faq-arrow::before {
  width: 8px;
  height: 2px;
}
.faq-arrow::after {
  width: 2px;
  height: 8px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}
.faq-answer.faq-open {
  max-height: 400px;
  padding: 0 20px 18px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

@media (max-width: 600px) {
  .faq-category-heading {
    font-size: 16px;
  }
  .faq-question {
    font-size: 14px;
    padding: 16px;
  }
  .faq-answer {
    padding: 0 16px;
  }
  .faq-answer.faq-open {
    padding: 0 16px 16px;
  }
}
/* =================================================================
   CREDITS PAGE
   ================================================================= */
.credits-hero::before {
  content: "444";
}

.credits-container {
  padding-top: 48px;
  padding-bottom: 56px;
}

.credits-section {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #ebebeb;
}
.credits-section:first-of-type {
  margin-top: 24px;
  padding-top: 0;
  border-top: none;
}

.credits-section-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
}

.credits-emoji {
  font-size: 20px;
  line-height: 1;
}

.credits-card {
  background: #fafafa;
  border: 1px solid #ebebeb;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 22px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.credits-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.credits-card.credits-card--text {
  border-left-color: #ddd;
}

.credits-card-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.credits-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.3;
}

.credits-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.credits-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 600px) {
  .credits-section-heading {
    font-size: 16px;
  }
  .credits-card {
    padding: 18px;
  }
  .credits-name {
    font-size: 15px;
  }
}

/*# sourceMappingURL=styles.css.map */
