@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;
  color: var(--dark);
  font-size: 34px;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
}

.header.scrolled .hamburger {
  color: var(--white);
}

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

.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;
  margin-left: 25px;
  margin-top: 50px;
}

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

.about-left h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FFCC80 0%, #E65100 50%, #FFCC80 100%);
  opacity: 6.5;
  border-radius: 2px;
}

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

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

.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: -9%;
  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;
}

.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: 2px 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);
  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: 12px 24px 14px;
  text-align: center;
}

.service h3 {
  font-size: 20px;
  margin-bottom: 0px;
  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 {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(238, 100, 38, 0.25);
}

.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);
}

.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: 0px;
}

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

.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{
  flex: 1;
}

.contact-right {
  flex: 1;
  margin-left: 90px;
}

.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);
}

/* ================= 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: 5px;
}

.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: 5px;
}

.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;
}

/* ================= RESPONSIVE — TABLET (≤992px) ================= */
@media (max-width: 992px) {
  .header {
    padding: 2px 5%;
  }
  .navbar a {
    padding: 6px 11px;
    font-size: 13px;
  }
  .hero {
    flex-direction: column;
    min-height: unset;
    padding-top: 100px;
    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{
    margin-left: 25px;
    width: 100%;
  }
  .quote-right {
    width: 100%;
  }
  .contact {
    flex-direction: column;
  }

  .contact-right{
    margin-left: 0px;
  }
  .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: block;
  }
  .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;
  }
  .call-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}
/* ================= 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%;
  }
}
/* ================= SERVICES PAGE HERO ================= */

.services-hero {
  padding: 130px 10% 0px;
  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);
}

/* ================= 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: 2px 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: 110px 5% 32px;
  }
  .tab-bar {
    gap: 8px;
  }
  .tab-btn {
    padding: 9px 18px;
    font-size: 13px;
  }
  .sp-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= PROJECTS PAGE HERO ================= */
.projects-hero {
  padding: 130px 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 {
  box-shadow: 0 6px 20px rgba(238, 100, 38, 0.25);
  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);
}

/* ================= PROJECTS PAGE RESPONSIVE ================= */
@media (max-width: 992px) {
  .pj-masonry {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .projects-hero {
    padding: 110px 5% 32px;
  }
  .pj-masonry {
    column-count: 1;
  }
  .pj-item--tall,
  .pj-item--short {
    height: 240px;
  }
}
/* ================= 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-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 20px;
  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: 35px;
}

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

.flip-card {
  height: 215px;
  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 {
  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: 2px solid var(--orange);
  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: black;
  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: 18px;
  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: 20px;
}

.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 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 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about-flip-grid {
    grid-template-columns: 1fr;
  }
  .flip-card {
    height: 240px;
  }
  .about-signature {
    padding: 60px 5%;
  }
}
