/* =========================================
   PRASUNA INFRA — Global Design System
   ========================================= */

/* ── VARIABLES ── */
:root {
  --amber:       #F7A800;
  --amber-light: #FFF8E7;
  --red:         #D42B2B;
  --red-muted:   #C0392B;
  --dark:        #1C1C1C;
  --text:        #444444;
  --light-bg:    #FAFAF7;
  --white:       #FFFFFF;
  --border:      #E8E4DC;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; transition: color 0.2s; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  display: none;
  background: var(--amber);
  color: var(--dark);
  width: 44px; height: 44px;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  font-size: 18px;
  right: 20px; bottom: 20px;
  z-index: 9;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.back-to-top:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }


/* =========================================
   PHOSPHOR ICONS
   ========================================= */
i[class*="ph-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Icon animations */
@keyframes iconFill {
  from {
    --ph-fill: 0%;
  }
  to {
    --ph-fill: 100%;
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Trophy icon - Achievement */
.achievement-badge-icon i,
.achievement-popup-icon i {
  font-size: 64px;
  color: var(--amber);
  transition: all 0.5s ease;
}

.achievement-badge-section .achievement-badge-icon:hover i {
  --ph-fill: 100%;
  animation: iconPulse 0.6s ease;
}

/* Footer contact icons */
.footer-contact-icon i {
  font-size: 20px;
  color: var(--amber);
  transition: color 0.3s ease, --ph-fill 0.4s ease;
}

.footer-contact-item:hover .footer-contact-icon i {
  color: var(--red);
  --ph-fill: 100%;
}


/* =========================================
   NAV
   ========================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 76px;
  transition: box-shadow 0.3s;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-img {
  width: 60px; height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700; font-size: 18px;
  color: var(--red);
  letter-spacing: 0.5px;
  /* font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 20px);
  font-weight: 700; color: var(--dark);
  margin-bottom: 5px;
  font-style: italic; color: var(--red); */
}

.nav-links {
  display: flex; gap: 32px;
  list-style: none; align-items: center;
}
.nav-links a {
  font-size: 14px; font-weight: 600;
  color: var(--dark); letter-spacing: 0.3px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 14px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  min-width: 200px;
  list-style: none;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-radius: 0 0 4px 4px;
}
/* Transparent bridge fills the gap so hover isn't lost */
.nav-links .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -17px; left: 0; right: 0;
  height: 17px;
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu li a {
  display: block; padding: 12px 20px;
  font-size: 14px; font-weight: 500; color: var(--dark);
}
.nav-links .dropdown-menu li a::after { display: none; }
.nav-links .dropdown-menu li a:hover { background: var(--amber-light); color: var(--red); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--dark) !important;
  padding: 10px 24px; border-radius: 30px;
  font-weight: 700 !important; font-size: 14px !important;
  transition: background 0.2s, transform 0.2s, color 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--red) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}


/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,28,28,0.60) 0%,
    rgba(28,28,28,0.38) 55%,
    rgba(28,28,28,0.68) 100%
  );
}
.hero > * { position: relative; z-index: 1; }

.hero-tag {
  font-size: 18px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.2s both;
  
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 700; color: var(--white);
  line-height: 1.08; letter-spacing: -1px;
  max-width: 820px;
  animation: fadeUp 0.7s ease 0.4s both;
}
.hero-title em { font-style: italic; color: var(--amber); }

.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.78);
  max-width: 540px; margin: 28px auto 0;
  font-weight: 300; line-height: 1.75;
  animation: fadeUp 0.7s ease 0.55s both;
}
.hero-btn {
  margin-top: 44px; display: inline-block;
  background: var(--amber); color: var(--dark);
  padding: 16px 40px; border-radius: 40px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
  transition: all 0.25s;
  animation: fadeUp 0.7s ease 0.7s both;
}
.hero-btn:hover {
  background: var(--white); color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.3);
  animation: growLine 1.5s ease 1.5s both;
}


/* =========================================
   SHARED SECTION ELEMENTS
   ========================================= */
.section-eyebrow {
  font-size: 16px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
  display: block;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700; color: var(--dark);
  line-height: 1.18; margin-bottom: 24px;
}
.section-heading em { font-style: italic; color: var(--red); }

.section-header { text-align: center; margin-bottom: 60px; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--red);
  margin-top: 16px; transition: gap 0.2s;
}
.text-link:hover { gap: 14px; color: var(--red); }
.text-link::after { content: '→'; transition: transform 0.2s; }


/* =========================================
   ABOUT
   ========================================= */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.about-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; min-height: 480px;
}
.about-image-badge {
  transform: rotate(-12deg);
  filter: contrast(1.1) saturate(1.1);
  opacity: 0.95;
  position: absolute; bottom: 40px; right: -35px;

}

.badge-num {
  font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
  font-size: 68px; font-weight: 900;
  line-height: 1; display: block;
  letter-spacing: -2px;
}
.badge-num sup {
  font-size: 0.55em;
  position: relative;
  top: -0.2em;
}
.badge-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px; font-weight: 1000;
  letter-spacing: 2px; text-transform: uppercase;
  opacity: 0.85; margin-top: 8px; display: block;
}
.about-content {
  padding: 80px 80px 80px 100px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--light-bg);
}
.about-body {
  font-size: 15px; line-height: 1.85;
  color: var(--text); font-weight: 300;
  margin-right: 10px;
  text-align: justify;
  margin-bottom: 14px;
}


/* =========================================
   STATS STRIP
   ========================================= */
.stats-strip {
  background: var(--dark);
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 60px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: inline-block;
}

.stat-icon i {
  color: var(--amber);
  transition: color 0.4s ease, transform 0.4s ease;
}

.stat-item:hover .stat-icon i {
  color: var(--red);
  transform: scale(1.15) rotate(5deg);
  --ph-fill: 100%;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 700;
  color: var(--amber); line-height: 1;
  display: block;
}
.stat-label {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px; text-transform: uppercase;
  margin-top: 10px; display: block;
}


/* =========================================
   SERVICES
   ========================================= */
.services-section { padding: 100px 60px; background: var(--white); }

.services-intro {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic; color: var(--text);
  max-width: 660px; margin: 0 auto;
  line-height: 1.6; font-weight: 400;
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white); padding: 52px 40px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--amber-light); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--amber-light); border: 2px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 28px;
  transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: var(--amber); }

.service-icon-wrap i {
  color: var(--amber);
  transition: color 0.4s ease;
  font-size: 32px;
  --ph-fill: 0%;
}

.service-card:hover .service-icon-wrap i {
  --ph-fill: 100%;
  color: var(--dark);
}

.service-icon-img {
  width: 36px; height: 36px; object-fit: contain;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 700; color: var(--dark);
  margin-bottom: 14px; line-height: 1.3;
}
.service-desc {
  font-size: 14px; line-height: 1.8;
  color: var(--text); font-weight: 300;
}


/* =========================================
   QUOTE BANNER
   ========================================= */
.quote-banner {
  padding: 100px 60px; text-align: center;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.quote-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,28,28,0.82), rgba(28,28,28,0.62));
}
.quote-banner::after {
  content: '❝';
  font-size: 200px; color: rgba(247,168,0,0.07);
  position: absolute; top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: serif; line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic; color: var(--white);
  max-width: 800px; margin: 0 auto;
  line-height: 1.55; position: relative; z-index: 1;
}
.quote-text em { font-style: normal; color: var(--amber); }


/* =========================================
   PROJECTS
   ========================================= */
.projects-section { padding: 100px 60px; background: var(--light-bg); }

.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 20px;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden; border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.project-img {
  height: 220px; overflow: hidden; position: relative;
}
.project-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.project-card:hover .project-img img { transform: scale(1.06); }

.project-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--amber); color: var(--dark);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
}

.project-tag i {
  font-size: 12px;
  color: var(--dark);
  transition: --ph-fill 0.4s ease, transform 0.3s ease;
}

.project-card:hover .project-tag {
  background: var(--red);
  color: var(--white);
}

.project-card:hover .project-tag i {
  --ph-fill: 100%;
  transform: scale(1.15);
}

.project-body { padding: 32px; }
.project-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--dark);
  margin-bottom: 12px; line-height: 1.3;
}
.project-desc {
  font-size: 14px; line-height: 1.75;
  color: var(--text); font-weight: 300; margin-bottom: 20px;
}
.project-link {
  font-size: 13px; font-weight: 700; color: var(--red);
  letter-spacing: 0.5px; display: inline-flex;
  align-items: center; gap: 6px; transition: gap 0.2s;
}

.project-link i {
  font-size: 14px;
  transition: transform 0.3s ease, --ph-fill 0.4s ease;
}

.project-link:hover { 
  gap: 12px; 
  color: var(--red);
}

.project-link:hover i {
  transform: translateX(4px);
  --ph-fill: 100%;
}


/* =========================================
   RECENT WORK GALLERY
   ========================================= */
.gallery-section { padding: 100px 60px; background: var(--white); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 20px;
}
.gallery-item {
  overflow: hidden; border-radius: 4px;
  height: 240px; position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(28,28,28,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(247,168,0,0.25);
}
.gallery-view-more {
  margin-top: 40px; text-align: center;
}


/* =========================================
   CERTIFICATIONS
   ========================================= */
.certs-section { padding: 100px 60px; background: var(--light-bg); }

.certs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 20px;
  align-items: start;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}
.cert-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.cert-label {
  background: var(--amber); color: var(--dark);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 24px; text-align: center;
}
.certs-grid > .cert-card:first-child {
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cert-img { width: 100%; height: auto; display: block; }


/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--amber); padding: 80px 60px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-banner-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700; color: var(--dark);
  max-width: 560px; line-height: 1.25;
}
.cta-banner-text em { font-style: italic; color: var(--red); }

.btn-dark {
  background: var(--dark); color: var(--white);
  padding: 16px 40px; border-radius: 40px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
  transition: all 0.25s; white-space: nowrap; flex-shrink: 0;
}
.btn-dark:hover {
  background: var(--red); color: var(--white);
  transform: translateY(-2px);
}


/* =========================================
   CLIENTS
   ========================================= */
.clients-section { padding: 80px 60px; background: var(--white); }

.clients-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); margin-top: 20px;
}
.client-tile {
  background: var(--white); padding: 36px 24px;
  text-align: center; transition: background 0.25s;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.client-tile:hover { background: var(--amber-light); }
.client-logo {
  height: 80px; width: auto;
  max-width: 130px; object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s, transform 0.3s;
}
.client-tile:hover .client-logo {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.client-name {
  font-size: 11px; font-weight: 900; color: var(--text);
  letter-spacing: 0.3px; line-height: 1.5; opacity: 0.7;
  text-align: center;
}


/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--dark); padding: 70px 60px 40px;
  color: rgba(255,255,255,0.6);
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-text {
  font-size: 14px; line-height: 1.8;
  margin-top: 20px; font-weight: 300; max-width: 260px;
}
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 17px; color: var(--white);
  font-weight: 700; margin-bottom: 20px;
}
.footer-links {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 14px; font-weight: 300;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.footer-links a::before { content: '—'; font-size: 10px; opacity: 0.4; }
.footer-links a:hover { color: var(--amber); }

.footer-social {
  display: flex; gap: 12px; margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--amber); color: var(--dark); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-text { font-size: 14px; font-weight: 300; line-height: 1.5; }

.footer-bottom {
  padding-top: 32px;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.4); font-size: 12px;
}
.footer-bottom-links a:hover { color: var(--amber); }


/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  padding: 140px 60px 90px;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; left: 60px; bottom: 0;
  width: 72px; height: 4px;
  background: var(--amber);
}
.page-hero-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 18px; display: block;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700; color: var(--white);
  line-height: 1.08;
}
.page-hero-title em { font-style: italic; color: var(--amber); }

.breadcrumb-bar {
  margin-top: 28px; display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.breadcrumb-bar a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb-bar a:hover { color: var(--amber); }
.breadcrumb-bar span { color: rgba(255,255,255,0.4); }
.breadcrumb-bar span:last-child { color: var(--amber); }


/* =========================================
   CMD SECTION
   ========================================= */
.cmd-section {
  display: grid; grid-template-columns: 1fr 1.3fr;
  min-height: 450px;
}
.cmd-video-wrap {
  overflow: hidden; position: relative; min-height: 400px;
}
.cmd-video-wrap video {
  width: 100%; height: 450px; object-fit: cover; display: block;
}
.cmd-content {
  padding: 10px 70px 2px 70px; 
  background: var(--light-bg);
  display: flex; flex-direction: column; justify-content: center;
}
.cmd-body {
  font-size: 15px; line-height: 1.85;
  text-align: justify;
  color: var(--text); font-weight: 300; margin-bottom: 14px;
}


/* =========================================
   TEAM
   ========================================= */
.team-section { padding: 100px 60px; background: var(--white); }

.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 40px; margin-top: 20px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.team-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
}
.team-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.team-card-img {
  width: 100%; height: 320px;
  object-fit: cover; object-position: top;
  display: block;
}
.team-card-body { padding: 28px 32px 32px; }
.team-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--dark);
  margin-bottom: 8px;
}
.team-card-role {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px; display: block;
}
.team-social {
  display: flex; justify-content: center; gap: 10px;
}
.team-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.team-social a:hover { background: var(--amber); color: var(--dark); }


/* =========================================
   DPR PROJECTS PAGE
   ========================================= */
.dpr-section {
  display: grid; grid-template-columns: 1fr 1fr;
}
.dpr-image-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--dark);
}
.dpr-image-item {
  position: relative; overflow: hidden; height: 240px;
}
.dpr-image-item.single {
  grid-column: 1 / -1; height: 480px;
}
.dpr-image-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s;
}
.dpr-image-item:hover img { transform: scale(1.06); }
.dpr-image-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(28,28,28,0.88));
  padding: 24px 14px 12px;
  font-size: 12px; line-height: 1.4;
  color: rgba(255,255,255,0.9); font-weight: 400;
  transform: translateY(0); transition: transform 0.3s;
}

.dpr-content {
  padding: 60px 72px;
  background: var(--light-bg);
  display: flex; flex-direction: column; justify-content: center;
}
.dpr-client-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px; display: block;
}
.dpr-client-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: var(--dark);
  margin-bottom: 20px; line-height: 1.3;
}
.dpr-desc {
  font-size: 15px; line-height: 1.85;
  text-align: justify;
  color: var(--text); font-weight: 300; margin-bottom: 32px;
}
.dpr-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.dpr-spec-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  padding: 14px 18px; border-radius: 2px;
}
.dpr-spec-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text); opacity: 0.5;
  display: block; margin-bottom: 4px;
}
.dpr-spec-value {
  font-size: 15px; font-weight: 700; color: var(--dark); display: block;
}


/* =========================================
   SERVICES PAGE
   ========================================= */

/* Intro */
.services-intro-section { padding: 80px 60px 60px; background: var(--white); }
.services-intro-text {
  max-width: 720px; font-size: 17px; line-height: 1.85;
  text-align: justify;
  color: var(--text); font-weight: 300; margin-top: 24px;
}
.services-chips {
  display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap;
}
.services-chip {
  padding: 16px 24px; background: var(--light-bg);
  border: 1px solid var(--border); border-left: 3px solid var(--amber);
  min-width: 160px;
}
.services-chip-val {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--amber); line-height: 1;
  margin-bottom: 6px;
}
.services-chip-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text); opacity: 0.6;
}

/* Pillar cards */
.services-pillars-section { padding: 0 60px 80px; background: var(--white); }
.services-pillars-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--dark); margin-top: 48px;
}
.pillar-card {
  background: var(--dark); padding: 56px 52px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.pillar-card:hover { background: #222; }
.pillar-card::after {
  content: ''; position: absolute; bottom: 0; left: 52px;
  width: 48px; height: 3px; background: var(--amber);
  transition: width 0.4s ease;
}
.pillar-card:hover::after { width: 120px; }
.pillar-bg-num {
  font-family: 'Playfair Display', serif; font-size: 80px; font-weight: 700;
  color: rgba(247,168,0,0.07); position: absolute; top: 24px; right: 36px;
  line-height: 1; pointer-events: none; user-select: none;
}
.pillar-icon {
  width: 60px; height: 60px;
  background: rgba(247,168,0,0.1); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); font-size: 32px; margin-bottom: 28px;
}
.pillar-title {
  font-family: 'Playfair Display', serif; font-size: 22px;
  font-weight: 700; color: var(--white); margin-bottom: 22px;
}
.pillar-list { list-style: none; padding: 0; margin: 0; }
.pillar-list li {
  font-size: 15.5px; color: rgba(255,255,255,0.5);
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.45; display: flex; align-items: flex-start; gap: 10px;
}
.pillar-list li:last-child { border-bottom: none; }
.pillar-list li::before {
  content: '→'; color: var(--amber); font-size: 11px;
  flex-shrink: 0; margin-top: 1px;
}

/* Full numbered list */
.services-list-section { padding: 80px 60px 100px; background: var(--light-bg); }
.services-list-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-top: 48px;
}
.service-list-item {
  background: var(--white); border: 1px solid var(--border);
  border-left: 3px solid var(--amber); padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-list-item:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateX(4px);
}
.service-list-num {
  font-family: 'Playfair Display', serif; font-size: 26px;
  font-weight: 700; color: var(--amber); opacity: 0.35;
  line-height: 1; flex-shrink: 0; min-width: 36px;
}
.service-list-name {
  font-size: 15px; font-weight: 600; color: var(--dark);
  line-height: 1.55; padding-top: 3px;
}


/* =========================================
   GALLERY PAGE
   ========================================= */
.gallery-feat-section {
  padding: 80px 60px 60px;
  background: var(--white);
}
.gallery-video-wrap {
  position: relative; padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0; overflow: hidden;
  width: 100%; margin: 0;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.gallery-video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0; display: block;
}

.gallery-photos-section {
  padding: 0 60px 100px;
  background: var(--white);
}
.gallery-photos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.gallery-photo-item {
  border: 1px solid var(--border);
  border-radius: 2px; overflow: hidden;
  background: var(--dark);
  transition: box-shadow 0.3s, transform 0.3s;
}
.gallery-photo-item:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.gallery-photo-item img {
  width: 100%; height: 240px;
  object-fit: cover; display: block;
  transition: transform 0.5s, opacity 0.4s;
}
.gallery-photo-item:hover img { transform: scale(1.06); opacity: 0.85; }
.gallery-photo-caption {
  padding: 14px 16px;
  font-size: 13px; color: var(--text); line-height: 1.5;
  background: var(--light-bg);
  border-top: 2px solid var(--amber);
}


/* =========================================
   CAREERS PAGE
   ========================================= */
.careers-section {
  display: grid; grid-template-columns: 1fr 1.2fr;
  min-height: 640px;
}
.careers-info {
  padding: 80px 60px;
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.careers-info::after {
  content: ''; position: absolute; bottom: 0; left: 60px;
  width: 60px; height: 3px; background: var(--amber);
}
.careers-info .section-eyebrow { color: var(--amber); }
.careers-info-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px); font-weight: 700;
  color: var(--white); line-height: 1.2; margin: 12px 0 20px;
}
.careers-info-heading em { font-style: italic; color: var(--amber); }
.careers-info-text {
  font-size: 16px; line-height: 1.85; color: rgba(255,255,255,0.5);
  text-align: justify;
  font-weight: 300; margin-bottom: 40px; max-width: 444px;
}
.careers-perks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.careers-perk {
  display: flex; align-items: flex-start; gap: 14px;
}
.careers-perk-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(247,168,0,0.1); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); font-size: 14px;
}
.careers-perk-text strong {
  display: block; font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 2px;
}
.careers-perk-text span {
  font-size: 14.5px; color: rgba(255,255,255,0.4); line-height: 1.4;
}
.careers-contact-list { display: flex; flex-direction: column; gap: 12px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.careers-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.careers-contact-item i { color: var(--amber); width: 14px; }

/* Form panel */
.careers-form-wrap {
  padding: 80px 72px;
  background: var(--light-bg);
  display: flex; flex-direction: column; justify-content: center;
}
.careers-form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 35px; font-weight: 700; color: var(--dark);
  margin-bottom: 8px;
}
.careers-form-heading em { font-style: italic; color: var(--amber); }
.careers-form-sub {
  font-size: 16px; color: var(--text); opacity: 0.6;
  margin-bottom: 40px; line-height: 1.6;
}
.careers-form { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text); opacity: 0.6;
}
.form-field input {
  width: 100%; padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border); border-bottom: 2px solid var(--border);
  border-radius: 2px;
  font-family: 'Nunito Sans', sans-serif; font-size: 14px; color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-field input:focus {
  border-color: var(--border); border-bottom-color: var(--amber);
  box-shadow: 0 4px 16px rgba(247,168,0,0.08);
}
.form-field input::placeholder { color: var(--text); opacity: 0.35; }
.careers-submit-btn {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 8px; padding: 16px 36px;
  background: var(--amber); color: var(--dark);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; border: none; border-radius: 2px;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.careers-submit-btn:hover { background: #e09800; transform: translateY(-2px); }
.careers-submit-btn i { font-size: 12px; }


/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes growLine {
  from { height: 0; }
  to   { height: 48px; }
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes popupSlideOut {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.8) translateY(-24px);
  }
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(247, 168, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(247, 168, 0, 0);
  }
}

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* ═════════════════════════════════════════
   ACHIEVEMENT POPUP & BADGE
   ════════════════════════════════════════= */
.achievement-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  animation: popupSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.achievement-popup.hidden {
  animation: popupSlideOut 0.5s ease-out forwards;
}

.achievement-popup-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--amber);
  max-width: 320px;
  min-width: 280px;
}

.achievement-popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.achievement-popup-icon {
  font-size: 28px;
  line-height: 1;
}

.achievement-popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.achievement-popup-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.achievement-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 4px;
}

.achievement-popup-close:hover {
  opacity: 1;
}

.achievement-badge-section {
  background: linear-gradient(135deg, var(--amber-light) 0%, rgba(247, 168, 0, 0.05) 100%);
  padding: 60px;
  margin: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.achievement-badge-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.achievement-badge-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.achievement-badge-icon {
  width: 200px;
  height: 200px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  box-shadow: 0 12px 48px rgba(247, 168, 0, 0.15);
  animation: badgePulse 2s infinite;
}

.achievement-trophy-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.achievement-badge-content {
  padding: 0;
}

.achievement-badge-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.achievement-badge-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.achievement-badge-title em {
  color: var(--red);
  font-style: italic;
}

.achievement-badge-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.achievement-badge-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievement-badge-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text);
}

.achievement-badge-item::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}


/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-info-section {
  padding: 80px 60px;
  background: var(--light-bg);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  padding: 36px 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.contact-info-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--amber-light);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  font-size: 18px;
  margin-bottom: 20px;
}
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.contact-info-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
}

.contact-offices-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 560px;
}
.contact-offices-panel {
  background: var(--dark);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-offices-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.8vw, 36px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 40px;
}
.contact-offices-heading em { color: var(--amber); font-style: italic; }
.contact-office {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-office:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.contact-office-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.contact-office-text {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
}
.contact-map-wrap {
  position: relative;
  overflow: hidden;
}
.contact-map-iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}


/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  nav { padding: 0 32px; }
  .about-content { padding: 60px 48px 60px 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .certs-grid    { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .achievement-badge-wrap { gap: 40px; }
  .achievement-badge-icon { width: 160px; height: 160px; font-size: 80px; }
  .achievement-trophy-img { width: 96px; height: 96px; }
}

@media (max-width: 900px) {
  .about-section { grid-template-columns: 1fr; }
  .about-image   { min-height: 360px; }
  .about-image-badge { right: 20px; }
  .about-content { padding: 60px 40px; }
  .stats-strip   { grid-template-columns: repeat(2, 1fr); }
  .clients-row   { grid-template-columns: repeat(3, 1fr); }
  .cmd-section   { grid-template-columns: 1fr; }
  .cmd-video-wrap { min-height: 320px; }
  .team-grid     { grid-template-columns: 1fr; max-width: 480px; }
  .dpr-section   { grid-template-columns: 1fr; }
  .dpr-content   { padding: 48px 40px; }
  .gallery-photos-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-feat-section, .gallery-photos-section { padding-left: 40px; padding-right: 40px; }
  .services-pillars-grid { grid-template-columns: 1fr; }
  .services-intro-section, .services-pillars-section, .services-list-section { padding-left: 40px; padding-right: 40px; }
  .services-list-grid { grid-template-columns: 1fr; }
  .careers-section { grid-template-columns: 1fr; }
  .careers-info { padding: 60px 40px; }
  .careers-form-wrap { padding: 60px 40px; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-offices-section { grid-template-columns: 1fr; }
  .contact-map-wrap { min-height: 420px; position: relative; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; height: 68px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--amber); padding: 24px; gap: 20px; box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
  .nav-links.open { display: flex; }
  .nav-links .dropdown-menu { position: static; box-shadow: none; border: none; border-left: 3px solid var(--amber); margin: 8px 0 0 12px; display: none; }
  .nav-links .dropdown.open .dropdown-menu { display: block; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(36px, 10vw, 60px); }
  .services-section, .projects-section, .gallery-section,
  .certs-section, .clients-section, .quote-banner { padding: 70px 24px; }
  .services-grid  { grid-template-columns: 1fr; }
  .projects-grid  { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; }
  .cta-banner     { padding: 60px 24px; flex-direction: column; text-align: center; }
  .clients-row    { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr; gap: 32px; }
  footer          { padding: 50px 24px 32px; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .page-hero      { padding: 120px 24px 60px; }
  .page-hero::after { left: 24px; }
  .cmd-content    { padding: 60px 24px; }
  .team-section   { padding: 70px 24px; }
  .dpr-image-item { height: 180px; }
  .dpr-image-item.single { height: 300px; }
  .dpr-content    { padding: 48px 24px; }
  .gallery-feat-section, .gallery-photos-section { padding-left: 24px; padding-right: 24px; }
  .gallery-photos-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gallery-photo-item img { height: 180px; }
  .services-intro-section, .services-pillars-section, .services-list-section { padding-left: 24px; padding-right: 24px; }
  .pillar-card    { padding: 40px 28px; }
  .services-list-grid { grid-template-columns: 1fr; }
  .careers-info, .careers-form-wrap { padding: 50px 24px; }
  .achievement-badge-section { padding: 48px 24px; }
  .achievement-badge-wrap { grid-template-columns: 1fr; gap: 32px; }
  .achievement-badge-icon { width: 140px; height: 140px; font-size: 70px; }
  .achievement-trophy-img { width: 84px; height: 84px; }
  .achievement-popup { bottom: 16px; right: 16px; }
  .achievement-popup-card { max-width: 280px; min-width: 260px; }
}

@media (max-width: 480px) {
  .stats-strip  { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .clients-row  { grid-template-columns: 1fr 1fr; }
  .gallery-photos-grid { grid-template-columns: 1fr; }
  .achievement-badge-title { font-size: clamp(20px, 2vw, 28px); }
  .achievement-popup { bottom: 12px; right: 12px; }
  .achievement-popup-card { max-width: 100%; min-width: auto; width: calc(100% - 24px); }
}
