/* ═══════════════════════════════════════════════════════════════
   KON-IKS — Construction Company Landing Page
   Mobile-first responsive CSS
   ═══════════════════════════════════════════════════════════════ */

/* ───────────────────── RESET & BASE ───────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: oklch(0.24 0.012 250);
  font-family: 'Manrope', Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #131F36;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1A2B47;
}

h1, h2, h3, h4 {
  font-family: 'Archivo', Helvetica, sans-serif;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

p {
  margin: 0;
  text-wrap: pretty;
}

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

.page-wrapper {
  max-width: 100%;
  overflow-x: hidden;
}


/* ───────────────────── BUTTONS ───────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: #131F36;
  color: #fff;
  padding: 16px 30px;
  font-size: 16px;
}

.btn-primary:hover {
  background: #1C2E4A;
  color: #fff;
}

.btn-sm {
  padding: 11px 20px;
  font-size: 14.5px;
}

.btn-outline {
  border: 1px solid oklch(0.88 0.008 250);
  color: oklch(0.28 0.012 250);
  padding: 16px 28px;
  font-size: 16px;
  background: transparent;
}

.btn-outline:hover {
  border-color: #131F36;
  color: #131F36;
}

.btn-white-bg {
  background: #fff;
}

.btn-white {
  background: #fff;
  color: #1A2B47;
  padding: 15px 30px;
  font-size: 15.5px;
}

.btn-white:hover {
  background: oklch(0.95 0.02 250);
  color: #0F1D30;
}


/* ───────────────────── MEDIA & IMAGES ───────────────────── */
.hero-img,
.card-img,
.gal-img,
.tl-media,
.video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.testimonial-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ───────────────────── IMAGE PLACEHOLDERS ───────────────────── */
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: oklch(0.975 0.006 250);
  border: 1px solid oklch(0.92 0.006 250);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: repeating-linear-gradient(
    135deg,
    oklch(0.955 0.008 250) 0 2px,
    transparent 2px 10px
  );
  position: relative;
}

.image-placeholder::after {
  content: attr(data-label);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.58 0.012 250);
  text-align: center;
  padding: 8px;
}


/* ───────────────────── HEADER ───────────────────── */
.site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid oklch(0.92 0.006 250);
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(0.92 0.006 250);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.sticky-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-img {
  height: 56px;
  max-height: 64px;
  width: auto;
  display: block;
}

.logo-placeholder {
  height: 46px;
  width: 46px;
  background: #131F36;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.header-tagline {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.55 0.01 250);
  line-height: 1.4;
  max-width: 90px;
}

/* Desktop nav - hidden on mobile */
.navlinks {
  display: none;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
}

.navlinks a {
  color: oklch(0.32 0.012 250);
  text-decoration: none;
  transition: color 0.2s ease;
}

.navlinks a:hover {
  color: #131F36;
}

/* Header CTA - hidden on mobile */
.header-inner > .btn {
  display: none;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 60;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: oklch(0.24 0.012 250);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 20px 24px;
  gap: 4px;
  border-top: 1px solid oklch(0.92 0.006 250);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: oklch(0.32 0.012 250);
  border-bottom: 1px solid oklch(0.95 0.006 250);
}

.mobile-nav a:last-of-type {
  border-bottom: none;
}


/* ───────────────────── HERO ───────────────────── */
.hero-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}

.big {
  font-size: 36px;
  line-height: 1.06;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.6;
  color: oklch(0.44 0.012 250);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  height: 360px;
  width: 100%;
  min-width: 0;
}

.hero-image-wrap .image-placeholder {
  border-radius: 4px;
}


/* ───────────────────── VIDEO SECTION 1 ───────────────────── */
.video-section-1 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 64px;
}

.video-placeholder {
  position: relative;
  background: oklch(0.975 0.006 250);
  border: 1px solid oklch(0.92 0.006 250);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-image: repeating-linear-gradient(
    135deg,
    oklch(0.955 0.008 250) 0 2px,
    transparent 2px 10px
  );
}

.video-wide {
  aspect-ratio: 16 / 9;
}

.video-square {
  aspect-ratio: 4 / 3;
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #131F36;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn-sm {
  width: 56px;
  height: 56px;
}

.play-triangle {
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 5px;
}

.play-triangle-sm {
  border-left-width: 16px;
  border-top-width: 10px;
  border-bottom-width: 10px;
}

.video-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(0.48 0.012 250);
  text-align: center;
  line-height: 1.7;
}

.video-label span {
  color: oklch(0.62 0.01 250);
}


/* ───────────────────── STATS ───────────────────── */
.stats-section {
  background: #131F36;
  color: #fff;
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.stat-number {
  font-family: 'Archivo', sans-serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: oklch(0.88 0.04 250);
  margin-top: 10px;
  line-height: 1.5;
}


/* ───────────────────── SECTION HEADERS ───────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  line-height: 1.1;
}

.section-header p {
  font-size: 16px;
  line-height: 1.6;
  color: oklch(0.46 0.012 250);
  max-width: 420px;
}


/* ───────────────────── SERVICES ───────────────────── */
.services-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.service-image {
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
}

.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #131F36;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: oklch(0.46 0.012 250);
}


/* ───────────────────── PROJECTS GALLERY ───────────────────── */
.projects-section {
  background: oklch(0.98 0.005 250);
  border-top: 1px solid oklch(0.93 0.006 250);
  border-bottom: 1px solid oklch(0.93 0.006 250);
}

.projects-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}

.projects-inner .section-header h2 {
  font-size: 32px;
}

.projects-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gal-item {
  position: relative;
  min-height: 200px;
}

.gal-item:not(.galtext) {
  aspect-ratio: 4 / 3;
}

.gal-text {
  background: #131F36;
  color: #fff;
  border-radius: 4px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gal-text h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.gal-text p {
  font-size: 15px;
  line-height: 1.65;
  color: oklch(0.90 0.03 250);
}


/* ───────────────────── PROCESS TIMELINE ───────────────────── */
.process-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}

.process-title {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 48px;
  text-align: center;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Gray background line */
.timeline-line {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 6px;
  width: 1px;
  background: oklch(0.90 0.02 250);
}

/* Green fill line — grows on scroll */
.timeline-fill {
  position: absolute;
  top: 20px;
  left: 6px;
  width: 1px;
  height: 0;
  background: #131F36;
  z-index: 1;
  transition: none;
  will-change: height;
}

.tl-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
}

.tl-dot {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  justify-content: center;
  padding-top: 14px;
  z-index: 2;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid oklch(0.90 0.02 250);
  flex-shrink: 0;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Active dot state — filled green */
.dot.active {
  background: #131F36;
  border-color: #131F36;
  box-shadow: 0 0 0 4px rgba(19, 31, 54, 0.18);
}

.tl-num {
  font-family: 'Archivo', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #131F36;
  margin-bottom: 14px;
}

.tl-text h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.tl-text p {
  font-size: 15px;
  line-height: 1.65;
  color: oklch(0.46 0.012 250);
}

/* Mobile: all text goes to right of dot, image below */
.tl-text {
  grid-column: 2;
  grid-row: 1;
  text-align: left;
}

.tl-text-right {
  text-align: left;
}

.tl-img {
  grid-column: 2;
  grid-row: 2;
  margin-top: 24px;
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dot {
    transition: none;
  }
}


/* ───────────────────── VIDEO SECTION 2 ───────────────────── */
.video-section-2 {
  background: oklch(0.98 0.005 250);
  border-top: 1px solid oklch(0.93 0.006 250);
}

.video-2-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.video-2-text h2 {
  font-size: 30px;
  line-height: 1.12;
  margin-bottom: 20px;
}

.video-2-text p {
  font-size: 16px;
  line-height: 1.65;
  color: oklch(0.44 0.012 250);
  margin-bottom: 28px;
}


/* ───────────────────── WHY US ───────────────────── */
.why-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}

.why-section > h2 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 600px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-card {
  background: oklch(0.98 0.005 250);
  border: 1px solid oklch(0.93 0.006 250);
  border-radius: 4px;
  padding: 28px 24px;
  transition: border-color 0.2s ease;
  cursor: default;
}

.why-card:hover {
  border-color: #131F36;
}

.why-icon {
  font-size: 30px;
  line-height: 1;
  color: #131F36;
  display: block;
  margin-bottom: 20px;
  font-variation-settings: 'wght' 300;
}

.why-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.65;
  color: oklch(0.46 0.012 250);
}


/* ───────────────────── TESTIMONIALS ───────────────────── */
.testimonials-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}

.testimonials-section > h2 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 600px;
}

.testimonials-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  border-radius: 4px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .slider-slide {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: oklch(0.92 0.006 250);
  flex-shrink: 0;
}

.slider-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid oklch(0.90 0.008 250);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  color: #131F36;
  z-index: 2;
}

.slider-arrow:hover {
  background: #131F36;
  border-color: #131F36;
  color: #fff;
  box-shadow: 0 4px 16px rgba(19, 31, 54, 0.18);
}

.slider-arrow .material-symbols-outlined {
  font-size: 24px;
}

.slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: oklch(0.88 0.008 250);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dot:hover {
  background: oklch(0.70 0.02 250);
}

.slider-dot.active {
  background: #131F36;
  transform: scale(1.25);
}

.testimonial-card {
  margin: 0;
  background: oklch(0.98 0.005 250);
  border-radius: 4px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: oklch(0.30 0.012 250);
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: oklch(0.92 0.006 250);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
}

.testimonial-role {
  font-size: 13.5px;
  color: oklch(0.55 0.012 250);
}


/* ───────────────────── CAREERS ───────────────────── */
.careers-section {
  background: #131F36;
  color: #fff;
}

.careers-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.careers-inner h2 {
  font-size: 30px;
  line-height: 1.12;
  margin-bottom: 20px;
}

.careers-inner > p {
  font-size: 16px;
  line-height: 1.65;
  color: oklch(0.90 0.03 250);
  margin-bottom: 32px;
}


/* ───────────────────── CONTACT ───────────────────── */
.contact-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info h2 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 16px;
  line-height: 1.65;
  color: oklch(0.46 0.012 250);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(0.58 0.012 250);
  margin-bottom: 8px;
}

.contact-value {
  font-size: 17px;
  line-height: 1.6;
  color: oklch(0.30 0.012 250);
}

.contact-value-lg {
  font-size: 19px;
  font-weight: 600;
}

.contact-cta {
  margin-top: 36px;
}

.map-placeholder {
  position: relative;
  min-height: 360px;
  background: oklch(0.975 0.006 250);
  border: 1px solid oklch(0.92 0.006 250);
  border-radius: 4px;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}


/* ───────────────────── FOOTER ───────────────────── */
.site-footer {
  border-top: 1px solid oklch(0.93 0.006 250);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-inner span {
  font-size: 14px;
  color: oklch(0.55 0.012 250);
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≥ 600px)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px 24px;
  }

  .stat-number {
    font-size: 48px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }



  .hero-buttons .btn {
    font-size: 15px;
    padding: 14px 24px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL DESKTOP (≥ 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .header-inner {
    padding: 14px 28px;
  }

  .hero-section {
    padding: 64px 28px 56px;
  }

  .big {
    font-size: 48px;
  }

  .hero-image-wrap {
    height: 420px;
  }

  .video-section-1 {
    padding: 0 28px 80px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding: 64px 28px;
  }

  .stat-number {
    font-size: 50px;
  }

  .section-header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
  }

  .section-header h2 {
    font-size: 38px;
  }

  .services-section {
    padding: 96px 28px;
  }

  .projects-inner {
    padding: 96px 28px;
  }

  .process-section {
    padding: 96px 28px;
  }

  .process-title {
    font-size: 38px;
    margin-bottom: 60px;
  }

  .video-2-grid {
    padding: 96px 28px;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .video-2-text h2 {
    font-size: 34px;
  }

  .why-section {
    padding: 96px 28px;
  }

  .why-section > h2 {
    font-size: 38px;
    margin-bottom: 48px;
  }

  .testimonials-section {
    padding: 96px 28px;
  }

  .testimonials-section > h2 {
    font-size: 38px;
    margin-bottom: 48px;
  }

  .careers-inner {
    padding: 96px 28px;
  }

  .careers-inner h2 {
    font-size: 34px;
  }

  .contact-section {
    padding: 96px 28px;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }

  .contact-info h2 {
    font-size: 38px;
  }

  .contact-cta {
    margin-top: 44px;
  }

  .map-placeholder {
    min-height: 480px;
  }

  .footer-inner {
    padding: 24px 28px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP (≥ 1100px)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1100px) {
  /* Header */
  .header-inner {
    padding: 14px 32px;
    gap: 32px;
  }

  .navlinks {
    display: flex;
  }

  .header-inner > .btn {
    display: inline-flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }


  /* Hero */
  .hero-section {
    padding: 96px 32px 72px;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
  }

  .big {
    font-size: 68px;
    line-height: 1.02;
    margin-bottom: 28px;
  }

  .hero-desc {
    font-size: 19px;
    margin-bottom: 40px;
  }

  .hero-buttons .btn {
    font-size: 16px;
    padding: 16px 30px;
  }

  .hero-buttons .btn-outline {
    padding: 16px 28px;
  }

  .hero-image-wrap {
    height: 480px;
  }


  /* Video Section 1 */
  .video-section-1 {
    padding: 0 32px 96px;
  }

  .video-wide {
    aspect-ratio: 16 / 7;
  }

  .play-btn {
    width: 76px;
    height: 76px;
  }

  .play-triangle {
    border-left-width: 20px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    margin-left: 6px;
  }

  .video-label {
    font-size: 12.5px;
  }


  /* Stats */
  .stats-grid {
    padding: 72px 32px;
  }

  .stat-number {
    font-size: 52px;
  }

  .stat-label {
    font-size: 14.5px;
  }


  /* Sections common */
  .section-header h2 {
    font-size: 42px;
    max-width: 560px;
  }

  .section-header p {
    font-size: 17px;
  }

  .section-header {
    margin-bottom: 56px;
  }


  /* Services */
  .services-section {
    padding: 112px 32px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .service-card h3 {
    font-size: 23px;
  }

  .service-card p {
    font-size: 15.5px;
  }


  /* Projects Gallery */
  .projects-inner {
    padding: 112px 32px;
  }

  .projects-inner .section-header h2 {
    font-size: 42px;
  }

  .projects-gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 150px;
    gap: 20px;
  }

  .gal-featured {
    grid-column: span 4;
    grid-row: span 3;
  }

  .gal-small-1 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gal-small-2 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gal-small-3 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gal-small-4 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gal-text {
    grid-column: span 2;
    grid-row: span 2;
    padding: 36px 32px;
  }

  .gal-text h3 {
    font-size: 24px;
  }

  .gal-text p {
    font-size: 16px;
  }

  .gal-item {
    min-height: auto;
    aspect-ratio: auto;
  }

  .gal-item:not(.galtext) {
    aspect-ratio: auto;
  }


  /* Timeline / Process */
  .process-section {
    padding: 112px 32px;
  }

  .process-title {
    font-size: 42px;
    margin-bottom: 72px;
  }

  .timeline {
    gap: 88px;
  }

  .timeline-line {
    left: calc(50% - 0.5px);
  }

  .timeline-fill {
    left: calc(50% - 0.5px);
  }

  .tl-row {
    grid-template-columns: 1fr 64px 1fr;
  }

  .tl-dot {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
  }

  .tl-text {
    grid-column: auto;
    grid-row: auto;
  }

  .tl-text-right {
    text-align: right;
  }

  .tl-text-left {
    text-align: left;
  }

  .tl-img {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .tl-num {
    font-size: 44px;
  }

  .tl-text h3 {
    font-size: 24px;
  }

  .tl-text p {
    font-size: 16px;
  }


  /* Video Section 2 */
  .video-2-grid {
    padding: 112px 32px;
    gap: 64px;
  }

  .video-2-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
  }

  .video-2-text p {
    font-size: 17px;
    margin-bottom: 32px;
  }


  /* Why Us */
  .why-section {
    padding: 112px 32px;
  }

  .why-section > h2 {
    font-size: 42px;
    margin-bottom: 56px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .why-card {
    padding: 32px 28px;
  }

  .why-card h3 {
    font-size: 20px;
  }

  .why-card p {
    font-size: 15.5px;
  }


  /* Testimonials */
  .testimonials-section {
    padding: 112px 32px;
  }

  .testimonials-section > h2 {
    font-size: 42px;
    margin-bottom: 56px;
  }



  .testimonial-card {
    padding: 36px 32px;
  }

  .testimonial-card blockquote {
    font-size: 17px;
  }


  /* Careers */
  .careers-inner {
    padding: 112px 32px;
  }

  .careers-inner h2 {
    font-size: 38px;
  }

  .careers-inner > p {
    font-size: 17px;
    margin-bottom: 36px;
  }


  /* Contact */
  .contact-section {
    padding: 112px 32px;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
  }

  .contact-info h2 {
    font-size: 42px;
  }

  .contact-desc {
    font-size: 17px;
    margin-bottom: 44px;
  }


  /* Footer */
  .footer-inner {
    padding: 24px 32px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   UTILITY: Generic responsive overrides from original template
   ═══════════════════════════════════════════════════════════════ */
.split > *,
.cols3 > *,
.cols2 > *,
.gal > * {
  min-width: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS (Density 8/10)
   ═══════════════════════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(35px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.94);
}

/* Active state when scrolled into view */
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-150 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.2s; }
.delay-250 { transition-delay: 0.25s; }
.delay-300 { transition-delay: 0.3s; }
.delay-350 { transition-delay: 0.35s; }
.delay-400 { transition-delay: 0.4s; }
.delay-450 { transition-delay: 0.45s; }
.delay-500 { transition-delay: 0.5s; }

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
