:root {
  --primary: #f6a623;
  --secondary: #8b8b8b;
  --dark: #1f1f1f;
  --text: #4b4b4b;
  --bg: #f4f4f4;
  --light: #ffffff;
  --max-width: 1200px;
  font-size: 16px;
}

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

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  background-color: var(--light);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.site-header--hidden {
  transform: translateY(-100%);
}

.branding {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.branding:hover {
  opacity: 0.8;
}

.logo {
  height: 60px;
  width: auto;
  display: block;
}

.brand-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  color: var(--secondary);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--dark);
}

.site-nav .nav-item {
  position: relative;
}

.nav-item--services > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item--services > a::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -0.2rem;
}

.nav-item--services:hover > a::after,
.nav-item--services:focus-within > a::after {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}

.services-dropdown {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 12px);
  top: 100%;
  width: min(320px, calc(100vw - 4rem));
  background: var(--light);
  padding: 1.25rem 0;
  border-radius: 12px;
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  color: var(--dark);
  z-index: 20;
}

.nav-item--services:hover .services-dropdown,
.nav-item--services:focus-within .services-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-summary {
  padding: 0.75rem 1.5rem;
  transition: background-color 0.2s ease;
  border-left: 3px solid transparent;
}

.service-summary:hover {
  background-color: rgba(246, 166, 35, 0.08);
  border-left-color: var(--primary);
}

.service-summary h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-summary h4::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--primary);
  border-radius: 3px;
  flex-shrink: 0;
  background-color: transparent;
}

.service-summary:hover h4::before {
  background-color: var(--primary);
}

.service-summary h4 a {
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  flex: 1;
}

.service-summary h4 a:hover,
.service-summary h4 a:focus-visible {
  color: var(--primary);
}

.service-hero,
.story-hero,
.team-hero,
.work-hero,
.contact-hero {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.service-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(6, 18, 36, 0.75),
    rgba(6, 18, 36, 0.2)
  );
}

.service-hero-content {
  position: relative;
  max-width: 720px;
  padding: 4rem 2rem;
  color: var(--light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-overview .services-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f5f7fb);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(
    circle at top right,
    rgba(246, 166, 35, 0.2),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.15);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card--highlight {
  background: linear-gradient(135deg, rgba(246, 166, 35, 0.15), #ffffff);
  border-color: rgba(246, 166, 35, 0.35);
  box-shadow: 0 35px 80px rgba(246, 166, 35, 0.25);
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: rgba(15, 23, 42, 0.06);
}

.service-card--highlight .service-card-icon {
  background: rgba(246, 166, 35, 0.25);
}

.service-card-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--dark);
}

.service-card p {
  color: #5c5c5c;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--dark);
}

.service-card ul li {
  padding-left: 1.3rem;
  position: relative;
}

.service-card ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.service-card-pill {
  background: rgba(15, 23, 42, 0.05);
  color: var(--dark);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  color: var(--dark);
}

.services-cta {
  background: linear-gradient(135deg, #0b1f32, #0d2f4b);
  color: var(--light);
}

.services-cta-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-detail {
  background: #f8f9fc;
}

.service-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
  padding: 0 1.5rem 0 1.5rem;
  max-width: 1400px;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-right: -1.5rem;
}

.service-sidebar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(246, 166, 35, 0.2);
}

.service-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-sidebar-link {
  display: block;
  padding: 0.875rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  border-left: 3px solid transparent;
  line-height: 1.5;
}

.service-sidebar-link:hover {
  background-color: rgba(246, 166, 35, 0.08);
  color: var(--dark);
  border-left-color: var(--primary);
  transform: translateX(-2px);
}

.service-sidebar-link.active {
  background: linear-gradient(
    135deg,
    rgba(246, 166, 35, 0.15),
    rgba(246, 166, 35, 0.05)
  );
  color: var(--dark);
  border-left-color: var(--primary);
  font-weight: 600;
}

.service-sidebar-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--primary);
  border-radius: 0 2px 2px 0;
}

.service-detail-content {
  width: 100%;
}

.service-detail-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.service-detail-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-detail-card-head h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.service-detail-card-head p {
  color: #5c5c5c;
  line-height: 1.6;
}

.service-detail-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-detail-card ul li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--dark);
}

.service-detail-card ul li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.cta-button {
  background-color: var(--primary);
  color: var(--light);
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(246, 166, 35, 0.35);
}

.hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  max-height: 720px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
  overflow: hidden;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.is-active .hero-image {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(14, 14, 14, 0.7) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  max-width: 780px;
  text-align: left;
  color: var(--light);
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-kicker {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.85);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--light);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background-color: var(--primary);
  color: #1c1c1c;
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--light);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.hero-control span {
  font-size: 1.75rem;
  line-height: 1;
  margin-top: -2px;
}

.hero-control--prev {
  left: 2.5rem;
}

.hero-control--next {
  right: 2.5rem;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: translateY(-50%) scale(1.05);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-dot.is-active {
  width: 30px;
  background-color: var(--primary);
}

.hero-dot:hover {
  transform: scale(1.15);
}

.section {
  padding: 4.5rem 1.5rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.intro {
  background-color: #f5f5f5;
}

.intro-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.intro-text p {
  margin-bottom: 1rem;
  color: #5a5a5a;
}

.intro-visual {
  display: flex;
  justify-content: center;
}

.intro-circle {
  width: min(360px, 90%);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}

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

.feature {
  display: grid;
  align-items: stretch;
}

.feature--split {
  grid-template-columns: 3fr 2fr;
  background: linear-gradient(
    90deg,
    #f3f3f3 0%,
    #f3f3f3 60%,
    #ffffff 60%,
    #ffffff 100%
  );
  padding: 0;
}

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

.feature-card {
  background-color: #3d3e44;
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(2.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.feature-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.feature-card p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.feature--overlay {
  position: relative;
  padding: 0;
  min-height: 500px;
  overflow: hidden;
  background-color: #1f1f1f;
}

.feature--overlay img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: block;
}

.feature-overlay {
  position: relative;
  z-index: 1;
  background: rgba(36, 37, 43, 0.7);
  color: var(--light);
  min-height: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(2.5rem, 6vw, 4rem);
}

.feature-overlay h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
}

.feature-overlay p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.feature--circle {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  background-color: #f2f2f2;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3rem);
}

.feature-circle {
  width: min(380px, 90%);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}

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

.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  color: #494949;
}

.feature-text h3 {
  font-size: 1.9rem;
  color: var(--dark);
  font-weight: 600;
}

.feature-text p {
  line-height: 1.7;
}

.feature--team .feature-overlay {
  background: rgba(36, 37, 43, 0.62);
}

.site-footer {
  background: #151618;
  color: rgba(255, 255, 255, 0.85);
  padding: 5rem 4rem 2.5rem;
  border-top: 3px solid var(--primary);
  width: 100%;
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  padding: 0;
  width: 100%;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.footer-logo img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 5px;
}

.footer-branding p {
  font-size: 0.938rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-links h5,
.footer-contact h5 {
  font-size: 0.938rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(246, 166, 35, 0.3);
  display: inline-block;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.938rem;
  transition: all 0.25s ease;
  display: inline-block;
  padding: 0.35rem 0;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.25s ease;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 16px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact p {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0.25rem 0;
}

.footer-contact p:first-of-type {
  margin-top: 0.75rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 166, 35, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .cta-button {
    order: 2;
  }

  .intro-wrapper,
  .feature--split,
  .feature--circle {
    grid-template-columns: 1fr;
  }

  .feature--split {
    background: #ffffff;
  }

  .feature-card {
    text-align: left;
  }

  .feature-circle {
    margin-bottom: 0;
  }

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

  .hero-control--prev {
    left: 1.5rem;
  }

  .hero-control--next {
    right: 1.5rem;
  }

  .hero-content {
    padding: 0 1.5rem;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 1rem;
  }

  .cta-button {
    padding: 0.7rem 1.4rem;
  }

  .intro {
    padding: 3rem 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .hero {
    min-height: 460px;
  }

  .hero-content {
    padding: 0 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  .feature-overlay,
  .feature-card {
    padding: 2.5rem 1.8rem;
  }

  .feature-circle {
    width: min(300px, 100%);
  }

  .hero-control {
    display: none;
  }

  .hero-dots {
    bottom: 1.75rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .site-footer {
    padding: 4rem 1.25rem 2rem;
  }

  .footer-container {
    padding: 0 0.5rem;
    gap: 2.5rem;
  }
}

/* Story Page Styles */
.story-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.story-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.story-hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-intro {
  background: var(--light);
  padding: 5rem 2rem;
}

.story-intro-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2.5rem;
  line-height: 1.3;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.story-intro-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  text-align: center;
}

.story-mission,
.story-values {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-mission-image,
.story-values-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  min-height: 500px;
}

.story-mission-overlay,
.story-values-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.story-mission-content,
.story-values-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--light);
  max-width: 900px;
  padding: 0 2rem;
}

.story-mission-content h2,
.story-values-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-mission-content p,
.story-values-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.story-innovating {
  background: #2a2b30;
  color: var(--light);
  padding: 5rem 2rem;
}

.story-section-heading {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.story-innovating-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.story-achievements {
  max-width: 1000px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-achievements > li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 2rem;
  position: relative;
}

.story-achievements > li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.story-sub-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.story-sub-list li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 1.5rem;
  position: relative;
}

.story-sub-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .story-hero {
    min-height: 350px;
  }

  .story-intro {
    padding: 4rem 1.5rem;
  }

  .story-mission,
  .story-values {
    min-height: 400px;
  }

  .story-innovating {
    padding: 4rem 1.5rem;
  }

  .story-achievements > li {
    font-size: 1rem;
    padding-left: 1.75rem;
  }
}

/* Team Page Styles */
.team-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.team-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.team-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.team-hero-content h1 {
  font-size: clamp(3.25rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.team-intro {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 2rem;
}

.team-intro-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2.5rem;
  line-height: 1.4;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.team-intro-content {
  max-width: 900px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.team-intro-content p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text);
}

.team-expertise {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 2px solid #e9ecef;
}

.team-expertise h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2rem;
  text-align: center;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.expertise-item {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(246, 166, 35, 0.2);
}

.expertise-icon {
  font-size: 2rem;
  display: block;
}

.expertise-item span:last-child {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.team-members {
  background: var(--light);
  padding: 5rem 2rem;
}

.team-section-heading {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.team-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.5rem;
}

.team-member {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.team-member-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-member:hover .team-member-image img {
  transform: scale(1.1);
}

.team-member-info {
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: var(--light);
}

.team-member-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.team-member-info p {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.team-collaborators {
  background: #f8f9fa;
  padding: 5rem 2rem;
}

.collaborators-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.collaborators-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
}

.collaborator-logo {
  background: var(--light);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.collaborator-logo:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(246, 166, 35, 0.15);
}

.collaborator-logo span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.team-cta {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  min-height: 550px;
}

.team-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.team-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--light);
  max-width: 900px;
  padding: 0 2rem;
}

.team-cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.team-cta-content p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-cta-content .btn {
  font-size: 1rem;
  padding: 1.1rem 2.5rem;
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
  }

  .collaborators-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .team-intro,
  .team-members,
  .team-collaborators {
    padding: 4rem 1.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
  }

  .collaborators-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.25rem;
  }

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

  .team-cta {
    min-height: 450px;
  }
}

/* Work Page Styles */
.work-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.work-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.work-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.work-hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.work-excellence {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 6rem 2rem;
}

.work-excellence .container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.work-section-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.work-section-heading-alt {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.work-intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 3rem;
}

.work-services {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.work-capabilities {
  margin-top: 2.5rem;
}

.work-capabilities h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

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

.capability-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--light);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
}

.capability-item span:first-child {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.work-excellence-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.work-excellence-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-clients {
  background: #24252b;
  padding: 6rem 2rem;
  color: var(--light);
}

.work-clients-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.client-types p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

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

.client-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  color: var(--light);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.client-item:hover {
  background: rgba(246, 166, 35, 0.15);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.client-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-sectors {
  background: #f8f9fa;
  padding: 6rem 2rem;
}

.sectors-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.sector-card {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sector-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sector-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sector-card:hover .sector-image img {
  transform: scale(1.1);
}

.sector-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.sector-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.sector-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.work-niche {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.work-niche-content {
  background: #2c2d32;
  color: var(--light);
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
}

.work-niche-text {
  max-width: 600px;
}

.niche-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.work-niche-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.work-niche-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.work-niche-image {
  overflow: hidden;
}

.work-niche-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.work-resilient {
  background: #24252b;
  padding: 6rem 2rem;
  color: var(--light);
}

.work-resilient-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.resilient-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.resilient-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--primary);
  transition: all 0.3s ease;
}

.resilient-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.resilient-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.resilient-item span:last-child {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.work-resilient-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.work-resilient-visual {
  display: grid;
  gap: 1.5rem;
  height: fit-content;
}

.resilient-visual-card {
  background: rgba(246, 166, 35, 0.1);
  border: 2px solid rgba(246, 166, 35, 0.3);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.resilient-visual-card:hover {
  background: rgba(246, 166, 35, 0.2);
  border-color: var(--primary);
  transform: scale(1.05);
}

.visual-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.resilient-visual-card p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light);
  margin: 0;
}

.work-international {
  background: var(--light);
  padding: 6rem 2rem;
}

.work-international-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.work-international-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.work-international-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-international-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.work-geographic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.work-geographic-image {
  overflow: hidden;
}

.work-geographic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.work-geographic-content {
  background: #2c2d32;
  color: var(--light);
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
}

.work-geographic-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.work-quality {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.work-quality-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  min-height: 600px;
}

.work-quality-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.work-quality-content {
  position: relative;
  z-index: 1;
  color: var(--light);
  padding: 4rem 2rem;
}

.work-quality-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 2rem;
}

.work-quality-content p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 900px;
}

@media (max-width: 1200px) {
  .work-excellence .container,
  .work-clients-grid,
  .work-international-grid {
    grid-template-columns: 1fr;
  }

  .work-niche,
  .work-geographic {
    grid-template-columns: 1fr;
  }

  .work-resilient-grid {
    grid-template-columns: 1fr;
  }

  .work-niche-image img,
  .work-geographic-image img {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .work-excellence,
  .work-clients,
  .work-sectors,
  .work-resilient,
  .work-international {
    padding: 4rem 1.5rem;
  }

  .work-niche-content,
  .work-geographic-content {
    padding: 3rem 1.5rem;
  }

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

  .capabilities-grid,
  .client-list {
    grid-template-columns: 1fr;
  }

  .work-resilient-visual {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--light);
}

.contact-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.contact-main {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 6rem 2rem;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.contact-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 166, 35, 0.1);
  border-radius: 12px;
}

.contact-detail-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.contact-detail-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0.25rem 0;
}

.contact-detail-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail-content a:hover {
  color: var(--dark);
  text-decoration: underline;
}

.contact-social h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  background: var(--primary);
  color: var(--light);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.social-link:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(246, 166, 35, 0.3);
}

.contact-form-wrapper {
  background: var(--light);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(246, 166, 35, 0.1);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.contact-form .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.contact-cta {
  background: #24252b;
  padding: 5rem 2rem;
  color: var(--light);
}

.contact-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.contact-cta-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-main {
    padding: 4rem 1.5rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .contact-detail-item {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-cta {
    padding: 4rem 1.5rem;
  }

  .contact-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-cta-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .energy-services-circles {
    flex-direction: column;
    gap: 2rem;
  }

  .energy-circle {
    max-width: 100%;
  }

  .energy-circle-text {
    position: static;
    margin-top: 1rem;
    text-align: center;
  }
}

/* Energy Optimization Section */
.energy-optimization {
  background: linear-gradient(135deg, #eef4fb 0%, #ffffff 60%, #f6f8fb 100%);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}

.energy-optimization .container {
  position: relative;
  z-index: 1;
}

.energy-optimization::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(246, 166, 35, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(0, 102, 204, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.energy-optimization-panel {
  background: #ffffff;
  border-radius: 36px;
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

.energy-optimization-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at -10% 20%,
      rgba(246, 166, 35, 0.12),
      transparent 45%
    ),
    radial-gradient(
      circle at 110% 20%,
      rgba(0, 102, 204, 0.12),
      transparent 40%
    );
  opacity: 0.6;
  pointer-events: none;
}

.energy-optimization-panel > * {
  position: relative;
  z-index: 1;
}

.energy-optimization-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.energy-optimization-kicker {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  position: relative;
}

.energy-optimization-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.energy-optimization-subtitle {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.energy-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  width: 100%;
}

.energy-service-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #fafbfd);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
  overflow: hidden;
}

.energy-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.energy-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(
    circle at top right,
    rgba(246, 166, 35, 0.1),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.energy-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15);
  border-color: rgba(246, 166, 35, 0.2);
}

.energy-service-card:hover::before {
  opacity: 1;
}

.energy-service-card:hover::after {
  opacity: 1;
}

.energy-service-card:hover .energy-service-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.energy-service-card--sustainability {
  color: #28a745;
}

.energy-service-card--sustainability::before {
  background: linear-gradient(90deg, transparent, #28a745, transparent);
}

.energy-service-card--efficiency {
  color: #0066cc;
}

.energy-service-card--efficiency::before {
  background: linear-gradient(90deg, transparent, #0066cc, transparent);
}

.energy-service-card--procurement {
  color: #dc3545;
}

.energy-service-card--procurement::before {
  background: linear-gradient(90deg, transparent, #dc3545, transparent);
}

.energy-service-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(246, 166, 35, 0.1),
    rgba(246, 166, 35, 0.05)
  );
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.energy-service-card--sustainability .energy-service-card-icon {
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.15),
    rgba(40, 167, 69, 0.05)
  );
}

.energy-service-card--efficiency .energy-service-card-icon {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.15),
    rgba(0, 102, 204, 0.05)
  );
}

.energy-service-card--procurement .energy-service-card-icon {
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.15),
    rgba(220, 53, 69, 0.05)
  );
}

.energy-service-card-icon svg {
  width: 48px;
  height: 48px;
}

.energy-service-card-title {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.energy-service-card-description {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 300px;
  margin: 0;
}

.energy-service-card-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.energy-service-card:hover .energy-service-card-accent {
  opacity: 1;
  width: 100px;
}

@media (max-width: 768px) {
  .energy-optimization-panel {
    border-radius: 24px;
    padding: 2.5rem 1.75rem;
  }

  .energy-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .energy-optimization-subtitle {
    font-size: 1rem;
  }

  .service-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-sidebar {
    position: static;
    top: auto;
    order: 2;
  }

  .service-detail-content {
    order: 1;
  }
}
