/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #5B92BC;
  --primary-dark: #4A7EA3;
  --dark: #2D2D2D;
  --dark-mid: #4A4A4A;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --white: #ffffff;
  --font: 'Inter', system-ui, sans-serif;
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, .12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, .18);
  --transition: 0.3s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

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

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

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: opacity var(--transition);
}

.logo-link:hover {
  opacity: 0.85;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.logo-icon-white {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}



.logo-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.logo-name-white {
  color: var(--white);
}

.logo-tagline {
  display: block;
  font-size: 0.625rem;
  color: var(--primary);
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  color: var(--dark-mid);
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.btn-quote {
  display: block;
  padding: 0.625rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  transition: background var(--transition);
}

.btn-quote:hover {
  background: var(--primary-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}

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

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--dark);
  color: var(--white);
  font-size: 0.875rem;
  transition: background var(--transition), transform var(--transition);
}

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

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  transition: background var(--transition);
}

.btn-blue:hover {
  background: var(--primary-dark);
}

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-title span {
  font-weight: 500;
}

.section-title.white {
  color: var(--white);
}

.section-title.white span {
  color: inherit;
}

.section-desc {
  color: var(--gray-500);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--dark);
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.2s ease, transform 1.4s ease;
}

.hero-bg img.entering {
  opacity: 0;
  transform: scale(1.05);
}

.hero-bg img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg img.leaving {
  opacity: 0;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45, 45, 45, .95) 0%, rgba(45, 45, 45, .7) 50%, rgba(45, 45, 45, .4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.hero-text {
  max-width: 780px;
  animation: heroIn 0.8s ease forwards;
}

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

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-accent {
  display: block;
  color: var(--primary);
  font-weight: 400;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Carousel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition), border-color var(--transition);
  backdrop-filter: blur(4px);
}

.hero:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: transparent;
}

.carousel-prev {
  left: 1.5rem;
}

.carousel-next {
  right: 1.5rem;
}

.carousel-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel-dot {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  width: 8px;
}

.carousel-dot.active {
  background: var(--primary);
  width: 32px;
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.8);
}

/* ===== STATS ===== */
.stats-section {
  padding: 5rem 0;
  background: var(--white);
}

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

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-item svg {
  margin: 0 auto 1rem;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(91, 146, 188, 0.2);
  transform: translateY(-8px);
}

.service-icon-wrap {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  background: rgba(91, 146, 188, 0.1);
}

.service-card:hover .service-icon-wrap svg {
  stroke: var(--primary);
}

.service-icon-wrap svg {
  stroke: var(--dark);
  transition: stroke 0.3s ease;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--primary);
}

.service-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 6rem 0;
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.why-content {}

.why-desc {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.why-image {
  height: 400px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== PROJECTS ===== */
.projects-section {
  padding: 6rem 0;
  background: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.project-card {
  overflow: hidden;
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  cursor: pointer;
  transition: box-shadow 0.5s ease;
}

.project-card:hover {
  box-shadow: var(--shadow-xl);
}

.project-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

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

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 45, 45, .95) 0%, rgba(45, 45, 45, .4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0.7;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.project-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0;
  transition: opacity 0.5s 0.1s ease;
}

.project-card:hover .project-category {
  opacity: 1;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.project-line {
  height: 2px;
  width: 3rem;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s 0.2s ease;
}

.project-card:hover .project-line {
  transform: scaleX(1);
}

/* ===== CLIENTS STRIP ===== */
.clients-strip {
  padding: 4rem 0;
  background: var(--gray-50);
}

.clients-strip-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 3rem;
}

.clients-strip-title span {
  font-weight: 500;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  opacity: 0.6;
}

.client-logo {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  padding: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 0;
  background: var(--primary);
}

.cta-inner {
  text-align: center;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 1.5rem;
}

.footer-brand .logo-link {
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.footer-about {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links span {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 32px;
  height: 32px;
  background: var(--dark-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: background var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: var(--white);
}

.page-hero-content {
  max-width: 48rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.page-hero h1 span {
  font-weight: 500;
}

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

/* ===== ABOUT PAGE ===== */
.story-section {
  padding: 6rem 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.story-img {
  height: 450px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.story-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.story-content h2 span {
  font-weight: 500;
}

.story-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mv-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.mv-card {
  background: var(--white);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.mv-card h2 {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.mv-card p {
  color: var(--gray-600);
  line-height: 1.8;
}

.mv-card svg {
  margin-bottom: 1.5rem;
}

.values-section {
  padding: 6rem 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--gray-50);
  transition: background var(--transition), color var(--transition);
  cursor: default;
}

.value-card:hover {
  background: var(--primary);
  color: var(--white);
}

.value-card svg {
  margin: 0 auto 1.5rem;
  stroke: var(--primary);
  transition: stroke var(--transition);
}

.value-card:hover svg {
  stroke: var(--white);
}

.value-card h3 {
  font-size: 1.125rem;
  color: var(--dark);
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.value-card:hover h3 {
  color: var(--white);
}

.value-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  transition: color var(--transition);
}

.value-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

.timeline-section {
  padding: 6rem 0;
  background: var(--dark);
}

.timeline-wrap {
  position: relative;
}

.timeline-line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(91, 146, 188, 0.3);
  transform: translateX(-50%);
}

.timeline-entries {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-entry {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.timeline-card {
  background: var(--dark-mid);
  padding: 1.5rem;
  display: inline-block;
}

.timeline-year {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-event {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.team-section {
  padding: 6rem 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.team-stat {
  text-align: center;
}

.team-number {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.team-title {
  font-size: 1.125rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.team-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ===== SERVICES PAGE ===== */
.services-list-section {
  padding: 6rem 0;
  background: var(--white);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
  align-items: center;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(91, 146, 188, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-detail h2 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.service-detail p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.service-detail-img {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 2px;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  transition: transform 0.7s ease;
}

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

.service-detail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 45, 45, 0.5) 0%, transparent 60%);
  opacity: 0.6;
  transition: opacity 0.7s ease;
}

.service-detail-img:hover::after {
  opacity: 0.4;
}

.process-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.process-step {
  text-align: center;
}

.process-num {
  font-size: 4rem;
  font-weight: 600;
  color: rgba(91, 146, 188, 0.2);
  margin-bottom: 1rem;
}

.process-title {
  font-size: 1.125rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== PROJECTS PAGE ===== */
.filter-section {
  padding: 1.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 72px;
  z-index: 40;
}

.filter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.filter-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-right: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  background: var(--gray-100);
  color: var(--gray-700);
  transition: background var(--transition), color var(--transition);
}

.filter-btn:hover {
  background: var(--gray-200);
}

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

.projects-list-section {
  padding: 4rem 0;
  background: var(--gray-50);
  min-height: 500px;
}

.projects-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.project-full-card {
  background: var(--white);
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid transparent;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-full-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(91, 146, 188, 0.2);
}

.project-full-card.hidden {
  display: none;
}

.project-full-card.show {
  display: flex;
}

.project-full-card.entering {
  animation: cardIn 0.4s ease forwards;
}

.project-full-card.leaving {
  animation: cardOut 0.3s ease forwards;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  to {
    opacity: 0;
    transform: scale(0.9);
  }
}

.project-full-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.project-full-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 45, .2);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-full-card:hover .project-full-img::after {
  opacity: 1;
}

.project-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.project-full-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-full-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.project-full-card:hover .project-full-title {
  color: var(--primary);
}

.project-full-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.5rem;
}

.project-meta {
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.project-meta-row svg {
  stroke: var(--primary);
  flex-shrink: 0;
}

.project-stats-section {
  padding: 5rem 0;
  background: var(--dark);
}

.project-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.project-stat-num {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.project-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

/* ===== CLIENTS PAGE ===== */
.trust-section {
  padding: 5rem 0;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.trust-stat {
  text-align: center;
}

.trust-stat svg {
  margin: 0 auto 1rem;
}

.trust-num {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}

.industries-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.industry-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.industry-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(91, 146, 188, 0.2);
  transform: translateY(-8px);
}

.industry-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(91, 146, 188, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}

.industry-card:hover .industry-icon {
  background: rgba(91, 146, 188, 0.1);
}

.industry-name {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.industry-card:hover .industry-name {
  color: var(--primary);
}

.industry-count {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.industry-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.client-logos-section {
  padding: 6rem 0;
  background: var(--white);
}

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.client-logo-box {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  padding: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: default;
}

.client-logo-box:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.testimonials-section {
  padding: 6rem 0;
  background: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: var(--dark-mid);
  padding: 2rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: var(--primary);
  font-size: 1.25rem;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 1rem;
}

.testimonial-name {
  color: var(--white);
  margin-bottom: 0.25rem;
}

.testimonial-company {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.benefits-section {
  padding: 6rem 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-card {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.benefit-title {
  font-size: 1.0625rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-info-section {
  padding: 4rem 0;
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-info-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--gray-50);
  transition: background var(--transition), color var(--transition);
  cursor: default;
}

.contact-info-card:hover {
  background: var(--primary);
  color: var(--white);
}

.contact-info-card svg {
  margin: 0 auto 1rem;
  stroke: var(--primary);
  transition: stroke var(--transition);
}

.contact-info-card:hover svg {
  stroke: var(--white);
}

.contact-info-card-title {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.contact-info-card:hover .contact-info-card-title {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-content {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-info-sub {
  font-size: 0.75rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.contact-info-card:hover .contact-info-sub {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.form-card {
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-card h2 {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.form-card .form-intro {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  background: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
}

.form-textarea {
  resize: none;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background var(--transition);
}

.form-submit:hover {
  background: var(--primary-dark);
}

.map-placeholder {
  background: var(--gray-200);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-inner {
  text-align: center;
  padding: 2rem;
}

.map-inner svg {
  margin: 0 auto 1rem;
}

.map-inner p:first-of-type {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.map-inner p:last-of-type {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.offices-section {
  padding: 6rem 0;
  background: var(--white);
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.office-card {
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.office-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.office-city {
  font-size: 1.125rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.office-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.office-detail-row svg {
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-section-dark {
  padding: 5rem 0;
  background: var(--primary);
}

.cta-section-dark .cta-inner {
  text-align: center;
}

.cta-section-dark .cta-num {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 1rem;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, .5);
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 90vw);
  background: var(--white);
  z-index: 95;
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--dark-mid);
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
}

.mobile-nav .btn-quote {
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .clients-logos {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .client-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

  .offices-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .main-nav {
    display: flex !important;
  }

  .btn-quote {
    display: block !important;
  }

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

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

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: row;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-logos-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .projects-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline-line {
    display: block;
  }
}

@media (max-width: 767px) {
  .main-nav {
    display: none;
  }

  .btn-quote {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}