:root {
  --primary: #2c4258;
  --primary-light: #3e5972;
  --primary-dark: #1a2833;
  --accent: #4f8f76;
  --accent-light: #6ba58e;
  --accent-dark: #3d7360;
  --gold: #c99248;
  --gold-light: #d6a763;
  --teal: #4b83a0;
  --green: #4f8f76;
  --green-light: #6ba58e;
  --green-dark: #3d7360;
  --dark: #1a2833;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --white: #fff;
  --bg: #f0f4f8;
  --bg-alt: #f8fafc;
  --card-bg: rgba(255, 255, 255, 0.85);
  --glass: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1280px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(16, 185, 129, 0.15);
}

*,
*:focus {
  outline-color: var(--accent);
  outline-offset: 2px;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.section-dark::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.section-dark .container {
  position: relative;
  z-index: 1;
}

.section-mesh {
  background-image:
    radial-gradient(at 20% 30%, rgba(16, 185, 129, 0.03) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(26, 58, 92, 0.04) 0px, transparent 50%);
}

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

.section-header h2 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-header h2 .highlight {
  color: var(--green);
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green-light));
  border-radius: 2px;
  margin: 14px auto 0;
}

.section-header p {
  color: var(--text-light);
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  margin-top: 10px;
  max-width: 100%;
  padding: 0 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== DECORATIVE BLOBS ===== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--green);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  bottom: -80px;
  left: -80px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.1vw, 0.88rem);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font);
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-dark {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(7, 25, 38, 0.25);
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(7, 25, 38, 0.35);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 14px 36px;
  font-size: 0.95rem;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 6px 0;
  font-size: clamp(0.7rem, 0.9vw, 0.78rem);
  transition: var(--transition);
}

.header-scrolled .top-bar {
  padding: 2px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 20px);
  flex-wrap: wrap;
}

.top-bar-left a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.65rem, 0.9vw, 0.78rem);
  transition: var(--transition);
}

.top-bar-left a:hover {
  color: var(--gold-light);
}

.top-bar-left i {
  font-size: 0.65rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-right a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.7);
}

.top-bar-right a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.header-main {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header-scrolled .header-main {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.9;
}

.logo img {
  height: clamp(36px, 4.5vw, 48px);
  width: auto;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 8px 16px;
  color: var(--text);
  font-weight: 500;
  font-size: clamp(0.78rem, 1vw, 0.86rem);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  position: relative;
  transition: var(--transition);
  touch-action: manipulation;
}

.nav-menu a:hover {
  color: var(--primary);
  background: rgba(26, 58, 92, 0.06);
}

.nav-menu a.active {
  color: var(--green);
  background: rgba(16, 185, 129, 0.08);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

.nav-menu .btn {
  margin-left: 8px;
  padding: 8px 18px;
  font-size: clamp(0.72rem, 0.9vw, 0.8rem);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px;
  z-index: 1001;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-width: 48px;
  min-height: 48px;
  touch-action: manipulation;
}

.hamburger:hover {
  background: rgba(0, 0, 0, 0.04);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SLIDER ===== */
/* --- SS Projects brand timeline (hero slide 1) --- */
.ss-timeline-headline {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  margin-bottom: 2rem;
  font-family: var(--font);
}

.ss-timeline-headline span {
  font-size: clamp(1.4rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.08);
  transition: color .6s ease, text-shadow .6s ease;
}

.ss-timeline-headline span.ss-revealed {
  color: var(--white);
}

.ss-timeline-headline span.ss-c-blue.ss-revealed {
  color: var(--teal);
  text-shadow: 0 0 16px rgba(75, 131, 160, 0.4);
}

.ss-timeline-headline span.ss-c-green.ss-revealed {
  color: var(--accent);
  text-shadow: 0 0 16px rgba(79, 143, 118, 0.4);
}


.ss-year-box {
  width: clamp(52px, 8vw, 110px) !important;
  height: clamp(34px, 5vw, 60px) !important;
  border: 1.5px solid rgba(79, 143, 118, 0.5);
  background: rgba(0, 0, 0, 0.15);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--white);
  font-size: clamp(0.75rem, 1.3vw, 1.4rem) !important;
  font-weight: 600;
  font-family: var(--font);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
  flex-shrink: 0 !important;
  opacity: 0.2;
  transform: translateY(6px);
  transition: opacity .6s ease, transform .6s ease, border-color .6s ease, box-shadow .6s ease;
  justify-self: start;
}

.ss-year-box.ss-revealed {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(79, 143, 118, 0.25);
}

.ss-dot {
  width: clamp(3px, 0.6vw, 8px) !important;
  height: clamp(3px, 0.6vw, 8px) !important;
  border-radius: 50%;
  background: rgba(79, 143, 118, 0.3);
  transition: background .4s ease, box-shadow .4s ease, transform .4s ease;
  justify-self: center;
}

.ss-dot.ss-lit {
  background: var(--accent);
  box-shadow: 0 0 14px rgba(79, 143, 118, 0.9);
  transform: scale(1.15);
}

.ss-connector {
  position: relative;
  height: 2px;
  background: rgba(79, 143, 118, 0.2);
  overflow: hidden;
  width: 100% !important;
  justify-self: stretch;
}

.ss-connector::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width .7s ease;
}

.ss-connector.ss-filled::after {
  width: 100%;
}

/* BOTTOM ROW: same 13-column grid as the track above */
.ss-desc-row {
  position: relative;
  z-index: 2;
  display: grid !important;
  grid-template-columns: repeat(13, 1fr) !important;
  column-gap: clamp(8px, 1.5vw, 20px) !important;
  row-gap: clamp(6px, 1.5vw, 24px) !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin: 1.2rem auto 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.ss-desc-col {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Desktop-only column placement — scoped so it can never leak into the
   mobile 2x2 layout below */
@media (min-width: 769px) {
  .ss-desc-col[data-order="0"] {
    grid-column: 1 / 5;
  }

  .ss-desc-col[data-order="4"] {
    grid-column: 5 / 9;
  }

  .ss-desc-col[data-order="8"] {
    grid-column: 10 / 13;
  }

  .ss-desc-col[data-order="12"] {
    grid-column: 13 / 14;
    width: max-content !important;
    max-width: clamp(160px, 22vw, 260px) !important;
  }

  /* TOP TRACK: 13-column grid — one column per data-order (0-12) */
  .ss-timeline-track {
    position: relative;
    z-index: 2;
    display: grid !important;
    grid-template-columns: repeat(13, 1fr) !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    column-gap: clamp(8px, 1.5vw, 20px) !important;
  }

  .ss-timeline-track>[data-order="0"] {
    grid-column: 1;
  }

  .ss-timeline-track>[data-order="1"] {
    grid-column: 2;
  }

  .ss-timeline-track>[data-order="2"] {
    grid-column: 3;
  }

  .ss-timeline-track>[data-order="3"] {
    grid-column: 4;
  }

  .ss-timeline-track>[data-order="4"] {
    grid-column: 5;
  }

  .ss-timeline-track>[data-order="5"] {
    grid-column: 6;
  }

  .ss-timeline-track>[data-order="6"] {
    grid-column: 7;
  }

  .ss-timeline-track>[data-order="7"] {
    grid-column: 8;
  }

  .ss-timeline-track>[data-order="8"] {
    grid-column: 9;
  }

  .ss-timeline-track>[data-order="9"] {
    grid-column: 10;
  }

  .ss-timeline-track>[data-order="10"] {
    grid-column: 11;
  }

  .ss-timeline-track>[data-order="11"] {
    grid-column: 12;
  }

  .ss-timeline-track>[data-order="12"] {
    grid-column: 13;
  }

}

.ss-desc-col .ss-stem {
  display: none !important;
}

.ss-desc-col p {
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(0.6rem, 0.9vw, 0.88rem) !important;
  line-height: 1.35 !important;
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 3px 8px rgba(0, 0, 0, 0.7);
  transition: opacity .6s ease, transform .6s ease;
  font-weight: 400;
  font-family: var(--font);
  word-break: break-word !important;
}

.ss-desc-col p strong {
  font-weight: 700;
  color: var(--white);
  font-size: clamp(0.68rem, 1.1vw, 1.05rem) !important;
  display: block !important;
  margin-bottom: 3px !important;
}

.ss-desc-col.ss-revealed p {
  opacity: 1;
  transform: translateY(0);
}

#ss-timeline-slide .hero-content {
  align-items: center;
  text-align: center;
  padding: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  #ss-timeline-slide .hero-content {
    padding: 10px 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .ss-timeline-track {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  .ss-year-box {
    width: 58px !important;
    height: 34px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
  }

  .ss-connector {
    flex-grow: 1 !important;
    width: auto !important;
    min-width: 6px !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.4) !important;
  }

  .ss-dot {
    width: 4px !important;
    height: 4px !important;
    margin: 0 1px !important;
    flex-shrink: 0 !important;
  }

  .ss-desc-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 10px !important;
    margin-top: 15px !important;
    padding: 0 !important;
    width: 100% !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  .ss-desc-col {
    grid-column: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-align: left !important;
  }

  .ss-stem {
    display: none !important;
  }

  .ss-desc-col p {
    font-size: 0.72rem !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    margin: 0 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9) !important;
  }

  .ss-desc-col strong {
    color: #ffffff !important;
    font-size: 0.82rem !important;
    display: block !important;
    margin-bottom: 2px !important;
  }
}

.hero-slider {
  position: relative;
  height: clamp(420px, 88vh, 780px);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease, transform 1.2s ease;
  transform: scale(1.06);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide-bg {
  position: absolute;
  inset: -60px;
}

.hero-slide-bg img,
.hero-slide-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* First slide only — cover both video and img cases */
/* OLD */
.hero-slide:not(:first-child) .hero-slide-bg img {
  animation: heroZoom 20s ease infinite alternate;
}

/* NEW */
.hero-slide:not(:last-child) .hero-slide-bg img {
  animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.5) 30%,
      rgba(0, 0, 0, 0.2) 55%,
      rgba(0, 0, 0, 0) 75%);
  z-index: 1;
}

#ss-timeline-slide .hero-overlay {
  background: rgba(6, 12, 16, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  color: var(--white);
}

.hero-slide.active .hero-badges {
  animation: fadeInUp 0.6s ease 0.15s both;
}

.hero-slide.active .hero-tag {
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-slide.active .hero-title {
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-slide.active .hero-desc {
  animation: fadeInUp 0.7s ease 0.5s both;
}

.hero-slide.active .hero-actions {
  animation: fadeInUp 0.7s ease 0.6s both;
}

.hero-slide.active .hero-stats {
  animation: fadeInUp 0.7s ease 0.7s both;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: clamp(0.6rem, 0.8vw, 0.68rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-badge i {
  color: var(--gold);
  font-size: 0.58rem;
}

.hero-tag {
  display: inline-block;
  width: fit-content;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50px;
  font-size: clamp(0.56rem, 0.78vw, 0.64rem);
  font-weight: 600;
  padding: 5px 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--white);
}

.hero-title {
  font-size: clamp(1.6rem, 4.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 660px;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-link:hover {
  color: var(--gold);
  gap: 10px;
}

.hero-link i {
  font-size: 0.78rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(0.6rem, 0.8vw, 0.7rem);
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-slide-image-only .hero-overlay {
  display: none;
}

.hero-slide-image-only .hero-content {
  display: none;
}

.hero-slide-image-only .hero-slide-bg,
.hero-slide-banner .hero-slide-bg {
  inset: 0 !important;
}

.hero-slide-image-only .hero-slide-bg img,
.hero-slide-banner .hero-slide-bg img {
  animation: none !important;
  transform: none !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #10151c !important;
}

.hero-slide-split-layout .hero-slide-bg {
  inset: 0 !important;
  display: flex;
}

.hero-slide-split {
  display: flex;
  width: 100%;
  height: 100%;
}

.hero-slide-split-text {
  width: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 56px;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.hero-slide-split-media {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.hero-slide-split-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: none;
}

.hero-split-brand-block {
  margin-bottom: 16px;
}

.hero-split-brand-block .brand-line {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  color: #16213e;
}

.hero-split-brand-block .brand-sub {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #e2703a;
  font-family: Georgia, 'Times New Roman', serif;
}

.hero-split-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 600;
  color: #7a4a3a;
  letter-spacing: 0.3px;
  margin-top: 8px;
}

.hero-split-location .bars {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-split-location .bars span {
  height: 4px;
  background: #e2703a;
  border-radius: 1px;
}

.hero-split-location .bars span:nth-child(1) {
  width: 12px;
}

.hero-split-location .bars span:nth-child(2) {
  width: 18px;
}

.hero-split-location .bars span:nth-child(3) {
  width: 18px;
}

.hero-split-tagline {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  color: var(--gold-dark, var(--gold));
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.hero-split-desc {
  font-size: clamp(0.85rem, 1.3vw, 1.02rem);
  color: var(--text-light);
  margin-bottom: 26px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-slide-split-text .hero-badge {
  background: rgba(15, 43, 74, 0.06);
  border-color: rgba(15, 43, 74, 0.12);
  color: var(--primary);
}

.hero-slide-split-text .hero-link {
  color: var(--primary);
}

.hero-slide-split-text .hero-link:hover {
  color: #e2703a;
}

.hero-slide-split-text .hero-stat-num {
  color: #e2703a;
}

.hero-slide-split-text .hero-stat-label {
  color: var(--text-muted);
}

.hero-slide-split-text .hero-stat-divider {
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .hero-slide-split {
    flex-direction: column;
  }

  .hero-slide-split-text,
  .hero-slide-split-media {
    width: 100%;
  }

  .hero-slide-split-text {
    height: 55%;
    padding: 24px 24px;
  }

  .hero-slide-split-media {
    height: 45%;
  }

  .hero-split-brand-block .brand-line {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .hero-split-brand-block .brand-sub {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }
}

.slider-nav {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--green);
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--green);
  border-color: var(--green);
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

@media (max-width: 1024px) {
  .hero-slider {
    height: 65vh;
  }

  .hero-content {
    padding: 0 32px;
  }

  .hero-title {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  }

  .hero-desc {
    max-width: 100%;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .slider-prev {
    left: 14px;
  }

  .slider-next {
    right: 14px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
    min-height: 380px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(1.15rem, 5vw, 1.4rem);
    max-width: 100%;
  }

  .hero-desc {
    font-size: 0.82rem;
    margin-bottom: 20px;
  }

  .hero-stats {
    gap: 14px;
    margin-top: 24px;
  }

  .hero-stat-num {
    font-size: 1rem;
  }

  .hero-stat-label {
    font-size: 0.6rem;
  }

  .hero-stat-divider {
    height: 24px;
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-link {
    font-size: 0.84rem;
  }

  .hero-badges {
    gap: 6px;
  }

  .hero-badge {
    font-size: 0.56rem;
    padding: 3px 10px;
  }

  .hero-tag {
    font-size: 0.54rem;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .slider-arrow {
    display: none;
  }

  .slider-nav {
    bottom: 20px;
    gap: 10px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }

  .slider-dot.active {
    width: 22px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 55vh;
    min-height: 340px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.05rem;
  }

  .hero-desc {
    font-size: 0.76rem;
    margin-bottom: 16px;
  }

  .hero-badge {
    font-size: 0.5rem;
    padding: 2px 8px;
    gap: 4px;
  }

  .hero-badge i {
    font-size: 0.5rem;
  }

  .hero-tag {
    font-size: 0.5rem;
    padding: 3px 10px;
    margin-bottom: 10px;
  }

  .hero-stats {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-stat-num {
    font-size: 0.9rem;
  }

  .hero-stat-label {
    font-size: 0.55rem;
  }

  .hero-stat-divider {
    height: 18px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-link {
    font-size: 0.78rem;
  }

  .hero-link i {
    font-size: 0.65rem;
  }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: linear-gradient(135deg, var(--primary-dark), #0d3b4a, var(--green-dark));
  padding: 24px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.features-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.02) 20px,
      rgba(255, 255, 255, 0.02) 21px);
}

.features-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.feature-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: clamp(0.7rem, 0.9vw, 0.78rem);
  opacity: 0.7;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image .exp-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(16, 185, 129, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.about-image .exp-badge h3 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.about-image .exp-badge p {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.about-content h2 span {
  color: var(--accent);
}

.about-content p {
  color: var(--text-light);
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  margin-bottom: 14px;
  line-height: 1.7;
}

.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.about-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.8rem, 1vw, 0.88rem);
  font-weight: 500;
}

.about-feats li i {
  color: var(--accent);
  font-size: 0.9rem;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-item:last-child::after {
  display: none;
}

.stat-item h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  opacity: 0.8;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card .btn {
  margin-top: auto;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.15);
}

.service-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
  transition: var(--transition);
}

.service-card:hover .icon {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.service-card h3 {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: clamp(0.78rem, 1vw, 0.85rem);
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.3);
}

.why-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  transition: var(--transition);
}

.why-card:hover .icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.why-card h3 {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--primary);
  margin-bottom: 8px;
}

.why-card p {
  font-size: clamp(0.78rem, 1vw, 0.85rem);
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

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

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

.project-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(transparent, rgba(13, 27, 42, 0.92));
  color: var(--white);
  transform: translateY(8px);
  transition: var(--transition);
}

.project-card:hover .overlay {
  transform: translateY(0);
}

.project-card .overlay h4 {
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  margin-bottom: 4px;
}

.project-card .overlay p {
  font-size: clamp(0.75rem, 0.95vw, 0.82rem);
  opacity: 0.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 12px;
}

.testimonial-card .content {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow);
}

.testimonial-card .content::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  top: 8px;
  left: 20px;
  font-family: Georgia, serif;
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card .stars {
  color: var(--green);
  margin-bottom: 14px;
  font-size: 1rem;
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 18px;
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  line-height: 1.7;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-card .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.testimonial-card .author h4 {
  font-size: clamp(0.86rem, 1vw, 0.92rem);
  color: var(--primary);
}

.testimonial-card .author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

/* ===== PARTNERS ===== */
.partners-section {
  background: var(--white);
  padding: 48px 0;
  overflow: hidden;
}

.partners-slider {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.partners-track {
  display: flex;
  gap: 28px;
  animation: partnerScroll 30s linear infinite;
  width: fit-content;
}

@keyframes partnerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-item {
  padding: 18px 24px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  width: 150px;
  flex-shrink: 0;
  text-align: center;
}

.partner-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.partner-item img {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.86rem, 1.1vw, 0.93rem);
  color: var(--primary);
  transition: var(--transition);
  gap: 12px;
}

.faq-question:hover {
  background: rgba(26, 58, 92, 0.03);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-answer p {
  padding: 0 20px 16px;
  color: var(--text-light);
  font-size: clamp(0.8rem, 1vw, 0.88rem);
  line-height: 1.7;
}

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

.contact-info h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: clamp(0.78rem, 0.95vw, 0.85rem);
  color: var(--text-light);
}

.contact-form {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--primary);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: clamp(0.78rem, 0.95vw, 0.85rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e6ea;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(26, 58, 92, 0.08);
  background: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ===== MAP ===== */
.map-section {
  height: 320px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent-light));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--accent);
}

.footer-about p {
  font-size: clamp(0.78rem, 0.95vw, 0.85rem);
  opacity: 0.62;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.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: var(--white);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 0.95rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 26px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 1px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: clamp(0.78rem, 0.95vw, 0.85rem);
  opacity: 0.55;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact p {
  display: flex;
  gap: 10px;
  font-size: clamp(0.78rem, 0.95vw, 0.85rem);
  opacity: 0.58;
  margin-bottom: 12px;
}

.footer-contact p i {
  color: var(--green);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.72rem, 0.9vw, 0.8rem);
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 64px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
}

.page-header::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  top: -60px;
  left: -60px;
}

.page-header h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.page-header p {
  font-size: clamp(0.82rem, 1.15vw, 0.95rem);
  opacity: 0.82;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: clamp(0.78rem, 0.95vw, 0.85rem);
  margin-top: 12px;
  position: relative;
}

.breadcrumb a {
  color: var(--white);
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  opacity: 0.5;
}

/* ===== PAGE SPECIFICS ===== */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.team-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid rgba(16, 185, 129, 0.15);
}

.team-card h4 {
  color: var(--primary);
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  margin-bottom: 4px;
}

.team-card span {
  color: var(--text-light);
  font-size: clamp(0.78rem, 0.95vw, 0.84rem);
}

.team-card p {
  font-size: clamp(0.75rem, 0.88vw, 0.8rem);
  color: var(--text-muted);
  margin-top: 6px;
}

.services-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: center;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-detail-card:nth-child(even) {
  direction: rtl;
}

.service-detail-card:nth-child(even) .service-detail-content {
  direction: ltr;
}

.service-detail-img {
  position: relative;
  height: 100%;
  min-height: 200px;
  max-height: 220px;
  overflow: hidden;
}

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

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

.service-detail-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.service-detail-content {
  padding: 28px 28px 28px 0;
}

.service-detail-card:nth-child(even) .service-detail-content {
  padding: 28px 0 28px 28px;
}

.service-detail-content h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--primary);
  margin-bottom: 12px;
}

.service-detail-content p {
  font-size: clamp(0.78rem, 1vw, 0.86rem);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.service-detail-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.76rem, 0.95vw, 0.82rem);
  color: var(--text);
}

.service-detail-features li i {
  color: #22c55e;
  font-size: 0.8rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.process-number {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(26, 58, 92, 0.06);
  line-height: 1;
}

.process-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
}

.process-step h3 {
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  color: var(--primary);
  margin-bottom: 8px;
}

.process-step p {
  font-size: clamp(0.76rem, 0.95vw, 0.82rem);
  color: var(--text-light);
}

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

.product-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.product-card h4 {
  font-size: clamp(0.85rem, 1vw, 0.93rem);
  color: var(--primary);
  margin-bottom: 4px;
}

.product-card p {
  font-size: clamp(0.72rem, 0.88vw, 0.78rem);
  color: var(--text-light);
}

.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid #e2e6ea;
  border-radius: 50px;
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  font-size: clamp(0.75rem, 0.95vw, 0.82rem);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.filter-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

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

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.88), rgba(26, 58, 92, 0.55));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h4 {
  color: var(--white);
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  margin-bottom: 4px;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.75rem, 0.95vw, 0.82rem);
  margin-bottom: 8px;
}

.gallery-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.section-cta {
  background: linear-gradient(135deg, var(--primary-dark), #0d3b4a, var(--green-dark));
  padding: 56px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
}

.section-cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}

.section-cta h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  margin-bottom: 10px;
  position: relative;
}

.section-cta p {
  font-size: clamp(0.85rem, 1.15vw, 0.95rem);
  opacity: 0.85;
  margin-bottom: 24px;
  position: relative;
}

.section-cta .btn-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

/* ===== NEWSLETTER ===== */
.newsletter-bar {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 32px 0;
  color: var(--white);
}

.newsletter-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.newsletter-bar h3 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  white-space: nowrap;
}

.newsletter-bar p {
  font-size: clamp(0.78rem, 0.95vw, 0.84rem);
  opacity: 0.85;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.newsletter-form input {
  padding: 10px 16px;
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.85rem;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.9);
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form .btn {
  background: var(--primary-dark);
  color: var(--white);
  border: none;
  padding: 10px 24px;
}

.newsletter-form .btn:hover {
  background: var(--primary);
}

.newsletter-bar .newsletter-form .btn {
  background: var(--green-dark);
}

.newsletter-bar .newsletter-form .btn:hover {
  background: var(--green);
}

/* ===== POPUP / MODAL ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 40px 36px 36px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--bounce);
  text-align: center;
}

.popup-overlay.active .popup-modal {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition);
}

.popup-close:hover {
  background: var(--accent);
  color: var(--white);
  transform: rotate(90deg);
}

.popup-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.popup-modal h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--primary);
  margin-bottom: 10px;
}

.popup-modal p {
  font-size: clamp(0.84rem, 1.1vw, 0.92rem);
  color: var(--text-light);
  margin-bottom: 22px;
  line-height: 1.6;
}

.popup-offer {
  display: inline-block;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
  border: 1px dashed var(--accent);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  margin-bottom: 22px;
  font-size: clamp(0.88rem, 1.2vw, 0.97rem);
  font-weight: 600;
  color: var(--accent);
}

.popup-modal .btn {
  width: 100%;
  padding: 14px;
}

/* ===== FLOATING ACTIONS ===== */
.float-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
  animation: pulse-subtle 2s ease-in-out infinite;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.float-btn-wa:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.float-btn-call {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.float-btn-call:hover {
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.float-btn .tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.float-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.float-btn .tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--primary-dark);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-subtle {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 {
  transition-delay: 0.1s;
}

.fade-up-d2 {
  transition-delay: 0.2s;
}

.fade-up-d3 {
  transition-delay: 0.3s;
}

.fade-up-d4 {
  transition-delay: 0.4s;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--primary-light), var(--accent));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item:nth-child(odd) {
  padding-right: calc(50% + 30px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: calc(50% + 30px);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent);
  z-index: 1;
}

.timeline-content {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: inline-block;
}

.timeline-content h4 {
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.82rem;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border-color: var(--accent);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

.pricing-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
}

.pricing-card h3 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.pricing-card .price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card ul {
  margin-bottom: 20px;
}

.pricing-card ul li {
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card ul li i {
  color: #22c55e;
  margin-right: 8px;
  font-size: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    height: 65vh;
  }

  .hero-content {
    padding: 0 32px;
  }

  .hero-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
  }

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

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

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

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .service-detail-card:nth-child(even) {
    direction: ltr;
  }

  .service-detail-card:nth-child(even) .service-detail-content {
    padding: 0 24px 24px;
  }

  .service-detail-content {
    padding: 0 24px 24px;
  }

  .service-detail-img {
    min-height: 220px;
    max-height: 260px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-strip .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about-grid {
    gap: 32px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-bar h3 {
    white-space: normal;
  }

  .newsletter-form input {
    min-width: 200px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding: 0 0 0 50px;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 48px 0;
  }

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

  .top-bar-inner {
    padding: 0 16px;
  }

  .top-bar-left {
    gap: 8px;
  }

  .top-bar-left a {
    font-size: 0.62rem;
  }

  .top-bar-right {
    gap: 4px;
  }

  .top-bar-right a {
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
  }

  .header-scrolled .top-bar {
    padding: 2px 0;
  }

  .header-main .container {
    padding: 8px 16px;
    min-height: 48px;
  }

  .logo img {
    height: 32px;
  }

  .hamburger {
    display: block;
    padding: 6px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 24px 24px;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    padding: 16px 28px;
    font-size: 1.15rem;
    width: 100%;
    max-width: 320px;
    text-align: center;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
  }

  .nav-menu .btn {
    margin-left: 0;
    margin-top: 16px;
    padding: 16px 36px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 320px;
    min-height: 52px;
  }

  .hero {
    height: 60vh;
    min-height: 360px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(1.15rem, 5vw, 1.4rem);
    max-width: 100%;
  }

  .hero-desc {
    font-size: 0.82rem;
    margin-bottom: 20px;
  }

  .hero-stats {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-badges {
    gap: 4px;
  }

  .hero-badge {
    font-size: 0.58rem;
    padding: 3px 10px;
  }

  .hero-tag {
    font-size: 0.58rem;
    padding: 4px 12px;
  }

  .hero-stat-num {
    font-size: 1rem;
  }

  .hero-stat-label {
    font-size: 0.62rem;
  }

  .hero-stat-divider {
    height: 24px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-link {
    font-size: 0.84rem;
  }

  .hero-shape {
    width: 200px;
    height: 200px;
    bottom: -60px;
    right: -60px;
  }

  .features-strip .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .feature-item {
    padding: 4px 0;
  }

  .feature-item .icon {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .feature-item h4 {
    font-size: 0.76rem;
  }

  .feature-item p {
    font-size: 0.65rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-image img {
    height: 240px;
  }

  .about-content h2 {
    font-size: 1.2rem;
  }

  .about-content p {
    font-size: 0.84rem;
  }

  .about-feats {
    gap: 8px;
  }

  .about-feats li {
    font-size: 0.8rem;
  }

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

  .stat-item h3 {
    font-size: 1.5rem;
  }

  .stat-item p {
    font-size: 0.8rem;
  }

  .stat-item::after {
    display: none;
  }

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

  .service-card {
    padding: 24px 20px;
  }

  .service-card .icon {
    width: 50px;
    height: 50px;
    font-size: 1.05rem;
  }

  .service-card h3 {
    font-size: 0.94rem;
  }

  .service-card p {
    font-size: 0.82rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    height: 220px;
  }

  .why-grid {
    gap: 16px;
  }

  .why-card {
    padding: 24px 16px;
  }

  .why-card .icon {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
  }

  .why-card h3 {
    font-size: 0.9rem;
  }

  .why-card p {
    font-size: 0.8rem;
  }

  .testimonial-card .content {
    padding: 28px 20px;
  }

  .testimonials-slider {
    padding: 0;
  }

  .partner-item {
    width: 110px;
    padding: 14px;
  }

  .partner-item img {
    height: 30px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.86rem;
  }

  .faq-answer p {
    font-size: 0.82rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px;
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .team-card img {
    width: 68px;
    height: 68px;
  }

  .page-header {
    padding: 40px 0 32px;
  }

  .page-header h1 {
    font-size: 1.3rem;
  }

  .page-header p {
    font-size: 0.82rem;
  }

  .service-detail-card {
    gap: 0;
  }

  .service-detail-content h3 {
    font-size: 1.05rem;
  }

  .service-detail-features {
    grid-template-columns: 1fr;
  }

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

  .process-step {
    padding: 24px 18px;
  }

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

  .product-card {
    padding: 18px;
  }

  .product-card img {
    width: 70px;
    height: 70px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item {
    height: 220px;
  }

  .project-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 7px 16px;
    font-size: 0.74rem;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form {
    padding: 24px;
  }

  .section-cta {
    padding: 40px 20px;
  }

  .section-cta h2 {
    font-size: 1.15rem;
  }

  .section-cta p {
    font-size: 0.84rem;
  }

  .popup-modal {
    padding: 28px 24px;
    margin: 12px;
  }

  .popup-modal h2 {
    font-size: 1.15rem;
  }

  .popup-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }

  .float-actions {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .float-btn .tooltip {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }

  .scroll-indicator {
    display: none;
  }
}

@media (min-width: 1401px) {
  .container {
    padding: 0 48px;
  }

  .hero-content {
    padding: 0 80px;
  }

  .hero {
    height: 75vh;
    max-height: 700px;
  }

  .hero-title {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
  }

  .section {
    padding: 96px 0;
  }

  .services-grid {
    gap: 28px;
  }

  .why-grid {
    gap: 28px;
  }

  .service-card {
    padding: 36px 28px;
  }

  .service-card .icon {
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 36px 0;
  }

  .top-bar {
    display: none;
  }

  .header-main .container {
    padding: 6px 12px;
  }

  .logo img {
    height: 50px;
  }

  .hero {
    height: 55vh;
    min-height: 320px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.1rem;
  }

  .hero-desc {
    font-size: 0.78rem;
    margin-bottom: 20px;
  }

  .hero-stats {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-badge {
    font-size: 0.52rem;
    padding: 2px 8px;
    gap: 4px;
  }

  .hero-tag {
    font-size: 0.52rem;
    padding: 3px 10px;
    margin-bottom: 12px;
  }

  .hero-stat-num {
    font-size: 0.92rem;
  }

  .hero-stat-label {
    font-size: 0.58rem;
  }

  .hero-stat-divider {
    height: 20px;
  }

  .hero-shape {
    display: none;
  }

  .features-strip {
    padding: 14px 0;
  }

  .features-strip .container {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .feature-item {
    gap: 10px;
  }

  .feature-item .icon {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .feature-item h4 {
    font-size: 0.74rem;
  }

  .feature-item p {
    font-size: 0.62rem;
  }

  .stats-grid {
    gap: 12px;
  }

  .stat-item h3 {
    font-size: 1.3rem;
  }

  .stat-item p {
    font-size: 0.74rem;
  }

  .services-grid {
    gap: 14px;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-card .icon {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
    margin: 0 auto 12px;
  }

  .service-card h3 {
    font-size: 0.88rem;
  }

  .service-card p {
    font-size: 0.78rem;
  }

  .service-card .btn {
    padding: 8px 16px;
    font-size: 0.74rem;
  }

  .about-image img {
    height: 200px;
  }

  .about-image .exp-badge {
    padding: 10px 16px;
  }

  .about-image .exp-badge h3 {
    font-size: 1.2rem;
  }

  .about-image .exp-badge p {
    font-size: 0.62rem;
  }

  .about-content h2 {
    font-size: 1.08rem;
  }

  .about-content p {
    font-size: 0.8rem;
  }

  .about-feats {
    gap: 6px;
  }

  .about-feats li {
    font-size: 0.78rem;
  }

  .why-grid {
    gap: 14px;
  }

  .why-card {
    padding: 20px 14px;
  }

  .why-card .icon {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }

  .why-card h3 {
    font-size: 0.86rem;
  }

  .why-card p {
    font-size: 0.78rem;
  }

  .project-card {
    height: 200px;
  }

  .project-card .overlay {
    padding: 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-card {
    padding: 16px;
  }

  .product-card img {
    width: 60px;
    height: 60px;
  }

  .product-card h4 {
    font-size: 0.84rem;
  }

  .gallery-item {
    height: 200px;
  }

  .testimonial-card .content {
    padding: 24px 16px;
  }

  .testimonial-card .content::before {
    font-size: 3rem;
    top: 4px;
    left: 14px;
  }

  .testimonial-card p {
    font-size: 0.8rem;
  }

  .testimonial-card .author img {
    width: 40px;
    height: 40px;
  }

  .footer {
    padding: 36px 0 0;
  }

  .footer-about h3 {
    font-size: 1.05rem;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .footer-links a {
    padding: 10px 0;
  }

  .footer-contact p {
    font-size: 0.8rem;
  }

  .footer h4 {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

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

  .section-header h2 {
    font-size: 1.15rem;
  }

  .section-header p {
    font-size: 0.78rem;
  }

  .page-header {
    padding: 28px 0 24px;
  }

  .page-header h1 {
    font-size: 1.15rem;
  }

  .page-header p {
    font-size: 0.78rem;
  }

  .process-step {
    padding: 22px 16px;
  }

  .process-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .process-step h3 {
    font-size: 0.88rem;
  }

  .process-step p {
    font-size: 0.78rem;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .contact-form h3 {
    font-size: 0.98rem;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select,
  .popup-name,
  .popup-phone,
  .popup-msg {
    padding: 12px;
    font-size: 16px;
  }

  .section-cta {
    padding: 32px 16px;
  }

  .section-cta h2 {
    font-size: 1.05rem;
  }

  .section-cta p {
    font-size: 0.8rem;
  }

  .popup-modal {
    padding: 24px 18px;
    margin: 8px;
  }

  .popup-modal h2 {
    font-size: 1.05rem;
  }

  .popup-modal p {
    font-size: 0.8rem;
  }

  .popup-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    margin: 0 auto 14px;
  }

  .popup-offer {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .popup-modal .btn {
    padding: 12px;
  }

  .team-grid {
    gap: 14px;
  }

  .team-card {
    padding: 20px;
  }

  .team-card img {
    width: 60px;
    height: 60px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-card .price {
    font-size: 1.6rem;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input {
    min-width: auto;
    width: 100%;
  }

  .newsletter-form .btn {
    width: 100%;
  }
}

/* Honeypot spam-trap field - hidden from real users */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ============================================================
   NEW COMPONENTS — location banner, illustrations, videos,
   certificates, service dropdown nav
   ============================================================ */

/* ----- Location / Telangana-only highlight banner ----- */
.location-banner {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 14px 0;
}

.location-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.location-banner i {
  color: var(--accent);
  font-size: 1.1rem;
}

.location-banner p {
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  margin: 0;
}

.location-banner strong {
  color: var(--accent-light);
}

/* ----- Cartoon illustration accents ----- */
.illustration-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.illustration-strip img {
  width: 200px;
  max-width: 40vw;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
  transition: var(--transition);
}

.illustration-strip img:hover {
  transform: translateY(-8px);
}

.illustration-decor {
  position: absolute;
  width: 160px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 640px) {
  .illustration-strip>div {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ----- Video sections (hero/big-project/process) ----- */
.video-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: var(--shadow-lg);
}

.video-card video,
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card .video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
}

.video-card .video-caption h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.video-card .video-caption p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  color: rgba(255, 255, 255, 0.55);
  border: 2px dashed rgba(255, 255, 255, 0.25);
}

.video-placeholder i {
  font-size: 2.2rem;
  color: var(--accent);
}

.video-placeholder span {
  font-size: 0.85rem;
  text-align: center;
  padding: 0 20px;
}

/* ============================================================
   CERTIFICATE / IMAGE LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 25, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  padding: 40px 20px;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: min(90vw, 700px);
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--accent);
}

@media (max-width: 640px) {
  .certificate-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }
}

/* ----- Certificates & Awards ----- */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.certificate-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.certificate-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.certificate-card .cert-img {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.certificate-card .cert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certificate-card .cert-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.certificate-card .cert-placeholder i {
  font-size: 2.4rem;
  color: var(--accent);
}

.certificate-card .cert-body {
  padding: 16px 18px;
}

.certificate-card .cert-body h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.certificate-card .cert-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ----- Authorised-by badges (about page) ----- */
.authorised-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.authorised-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bg-alt);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.authorised-badge i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* ----- Services dropdown selector ----- */
.services-dropdown-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.services-dropdown-bar label {
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.services-dropdown-bar select {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  cursor: pointer;
}

.services-dropdown-bar select:focus {
  outline: none;
  border-color: var(--accent);
}

.services-dropdown-bar .btn {
  white-space: nowrap;
}

/* ----- Service detail page ----- */
.service-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 60px 0 40px;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 860px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
  }
}

.service-hero-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.service-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}

.service-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
  line-height: 1.7;
}

.service-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.service-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-steps-list {
  counter-reset: step;
  margin-top: 20px;
}

.process-steps-list .step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.process-steps-list .step:last-child {
  border-bottom: none;
}

.process-steps-list .step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.process-steps-list h4 {
  margin-bottom: 4px;
  color: var(--primary);
}

.process-steps-list p {
  color: var(--text-light);
  font-size: 0.92rem;
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.service-benefit {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.service-benefit i {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}

.service-benefit h4 {
  font-size: 0.98rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.service-benefit p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.service-gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.service-gallery-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

.other-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.other-services-list a {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.other-services-list a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ============================================================
   SERVICE ARTICLE (long-form detail content)
   ============================================================ */
.service-article-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: start;
  width: 100%;
}

.service-article-grid--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.service-article-grid--reverse .service-article {
  order: 2;
}

.service-article-grid--reverse .service-article-media {
  order: 1;
}

.service-article-media {
  position: sticky;
  top: 100px;
}

.service-article-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.service-article-media-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 10px;
  text-align: center;
}

.service-article {
  width: 100%;
}

.service-article-lead {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 28px;
  padding: 22px 26px;
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.service-article h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin: 32px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-article h3:first-of-type {
  margin-top: 0;
}

.service-article h3 i {
  color: var(--accent);
  font-size: 1rem;
}

.service-article p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 14px;
  font-size: 0.98rem;
}

.service-article ul.article-list {
  margin: 10px 0 20px;
  display: grid;
  gap: 10px;
}

.service-article ul.article-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-article ul.article-list li i {
  color: var(--accent);
  margin-top: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.service-article-callout {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 26px 0;
}

.service-article-callout h4 {
  font-size: 1.02rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-article-callout h4 i {
  color: var(--accent-light);
}

.service-article-callout ul {
  display: grid;
  gap: 8px;
}

.service-article-callout ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}

.service-article-callout ul li i {
  color: var(--accent-light);
  margin-top: 4px;
  font-size: 0.8rem;
}

.service-article-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
  margin-top: 20px;
}

@media (max-width: 900px) {

  .service-article-grid,
  .service-article-grid--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-article-grid--reverse .service-article {
    order: 1;
  }

  .service-article-grid--reverse .service-article-media {
    order: 2;
  }

  .service-article-media {
    position: static;
  }

  .service-article-media img {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .service-article-lead {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .service-article-callout {
    padding: 20px;
  }
}

/* ============================================================
   NAVBAR SERVICES DROPDOWN
   ============================================================ */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  color: var(--text);
  font-weight: 500;
  font-size: clamp(0.78rem, 1vw, 0.86rem);
  font-family: var(--font);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--primary);
  background: rgba(26, 58, 92, 0.06);
}

.nav-dropdown-toggle.active {
  color: var(--green);
  background: rgba(16, 185, 129, 0.08);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 640px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px;
  z-index: 500;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 4px 10px;
}

@media (min-width: 1100px) {
  .nav-dropdown-menu {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: var(--text);
  border-radius: 6px;
  white-space: normal;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--accent);
}

.nav-dropdown-menu a i:first-child {
  color: var(--accent);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.nav-dropdown-viewall {
  grid-column: 1 / -1;
  margin-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 12px !important;
  font-weight: 600;
  color: var(--accent) !important;
  justify-content: space-between;
}

@keyframes navDropIn {
  from {
    opacity: 0;
    transform: translateY(-6px) translateX(-50%);
  }

  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}

@media (min-width: 769px) {

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
    animation: navDropIn 0.18s ease;
  }
}

@media (max-width: 768px) {
  .nav-dropdown {
    flex-direction: column;
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1.15rem;
    min-height: 52px;
  }

  .nav-dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    width: 100%;
    padding: 0;
    margin-top: 6px;
    background: transparent;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    justify-content: center;
    text-align: center;
  }
}