/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--black);
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

/* Homepage Background Animation */
body.homepage::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(44, 137, 195, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(44, 137, 195, 0.04) 0%,
      transparent 50%
    );
  animation: backgroundFloat 20s ease-in-out infinite;
  z-index: -2;
  pointer-events: none;
}

body.homepage::after {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: 
    /* Small particles */ radial-gradient(
      1px 1px at 23px 47px,
      rgba(255, 255, 255, 0.06),
      transparent
    ),
    radial-gradient(1px 1px at 67px 83px, rgba(44, 137, 195, 0.05), transparent),
    radial-gradient(
      1px 1px at 89px 29px,
      rgba(255, 255, 255, 0.04),
      transparent
    ),
    radial-gradient(
      1px 1px at 134px 71px,
      rgba(44, 137, 195, 0.06),
      transparent
    ),
    radial-gradient(
      1px 1px at 156px 15px,
      rgba(255, 255, 255, 0.05),
      transparent
    ),
    radial-gradient(
      1px 1px at 178px 95px,
      rgba(44, 137, 195, 0.04),
      transparent
    ),
    /* Medium particles */
      radial-gradient(
        2px 2px at 41px 61px,
        rgba(255, 255, 255, 0.08),
        transparent
      ),
    radial-gradient(2px 2px at 73px 37px, rgba(44, 137, 195, 0.07), transparent),
    radial-gradient(
      2px 2px at 112px 89px,
      rgba(255, 255, 255, 0.06),
      transparent
    ),
    radial-gradient(
      2px 2px at 147px 53px,
      rgba(44, 137, 195, 0.08),
      transparent
    ),
    radial-gradient(
      2px 2px at 169px 19px,
      rgba(255, 255, 255, 0.07),
      transparent
    ),
    /* Large particles */
      radial-gradient(
        3px 3px at 52px 78px,
        rgba(255, 255, 255, 0.09),
        transparent
      ),
    radial-gradient(3px 3px at 98px 44px, rgba(44, 137, 195, 0.08), transparent),
    radial-gradient(
      3px 3px at 123px 86px,
      rgba(255, 255, 255, 0.07),
      transparent
    ),
    /* Geometric shapes */
      radial-gradient(
        4px 4px at 31px 65px,
        rgba(255, 255, 255, 0.08),
        transparent
      ),
    radial-gradient(4px 4px at 85px 21px, rgba(44, 137, 195, 0.07), transparent),
    radial-gradient(
      4px 4px at 161px 73px,
      rgba(255, 255, 255, 0.06),
      transparent
    );
  background-repeat: repeat;
  background-size: 190px 110px;
  animation: sparkle 25s linear infinite;
  z-index: -1;
  pointer-events: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Variables */
:root {
  --primary-color: #ffffff;
  --primary-dark: #f5f5f5;
  --secondary-color: #000000;
  --accent-color: #2c89c3;
  --text-color: #ffffff;
  --text-light: #cccccc;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #1a1a1a;
  --gray-200: #2a2a2a;
  --gray-300: #3a3a3a;
  --gray-800: #1a1a1a;
  --gray-900: #000000;
  --header-height: 80px;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black);
  border-bottom: 1px solid var(--black);
  z-index: var(--z-fixed);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.header.header--scrolled {
  background-color: var(--black);
  box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

/* Navigation */
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 10 0 0 0;
  max-width: none;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav__brand:hover {
  opacity: 0.8;
}

.nav__brand-icon {
  color: var(--white);
  font-size: 1.2rem;
}

.nav__brand-text {
  font-weight: 800;
}

.nav__menu {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
}

.nav__link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--white);
}

.nav__link--active {
  color: var(--white);
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
}

/* Main content adjustment for fixed header */
main {
  margin-top: var(--header-height);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

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

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--secondary:hover {
  background-color: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn--white {
  background-color: var(--white);
  color: var(--black);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Section styles */
.section__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

.section__description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
}

/* Hero Section */
.hero {
  height: 85vh;
  display: flex;
  align-items: center;
  color: var(--white);
}

@keyframes backgroundFloat {
  0%,
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  33% {
    transform: translate(40px, -40px) rotate(1.5deg);
  }
  66% {
    transform: translate(-30px, 30px) rotate(-1.5deg);
  }
}

@keyframes sparkle {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  25% {
    transform: translate(150px, -75px) rotate(90deg);
  }
  50% {
    transform: translate(300px, 50px) rotate(180deg);
  }
  75% {
    transform: translate(450px, -25px) rotate(270deg);
  }
  100% {
    transform: translate(600px, 0px) rotate(360deg);
  }
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: start;
  width: 100%;
  margin: 0;
  max-width: none;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: -10vh;
}

/* Floating Geometric Shapes */
.hero__bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__bg-shape {
  position: absolute;
  opacity: 0.1;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    var(--accent-color),
    rgba(255, 255, 255, 0.3)
  );
}

.hero__bg-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation: floatUpDown 8s ease-in-out infinite;
}

.hero__bg-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 80%;
  animation: floatUpDown 10s ease-in-out infinite reverse;
}

.hero__bg-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 30%;
  left: 70%;
  animation: floatUpDown 12s ease-in-out infinite;
  border-radius: 20%;
}

.hero__bg-shape:nth-child(4) {
  width: 40px;
  height: 40px;
  top: 70%;
  left: 20%;
  animation: floatUpDown 6s ease-in-out infinite;
  border-radius: 10%;
}

.hero__bg-shape:nth-child(5) {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 85%;
  animation: floatUpDown 14s ease-in-out infinite reverse;
  opacity: 0.05;
}

.hero__bg-shape:nth-child(6) {
  width: 70px;
  height: 70px;
  top: 80%;
  left: 60%;
  animation: floatUpDown 9s ease-in-out infinite;
  border-radius: 30%;
  opacity: 0.08;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
  }
  50% {
    transform: translateY(-40px) translateX(-5px) rotate(180deg);
  }
  75% {
    transform: translateY(-20px) translateX(-10px) rotate(270deg);
  }
}

.hero__content {
  width: 100%;
  transform: translateY(-5vh);
}

.hero__title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero__title--accent {
  color: var(--accent-color);
}

.hero__description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-align: left;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(10vh);
}

.hero__cta-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.hero__cta-link i {
  color: var(--accent-color);
}

.hero__cta-link:hover {
  gap: 12px;
}

.hero__cta-text {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.hero__visual {
  position: absolute;
  top: 0vh;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero__shape--1 {
  width: 300px;
  height: 300px;
  top: -10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero__shape--2 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 30%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 150px;
  height: 150px;
  top: 10%;
  right: 50%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Services Preview Section */
.services-preview {
  padding: 100px 0;
}

.services-preview__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Services Background Shapes */
.services-preview__bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.services-preview__bg-shape {
  position: absolute;
  opacity: 0.05;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    rgba(255, 255, 255, 0.2)
  );
  border-radius: 20%;
}

.services-preview__bg-shape:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 5%;
  animation: floatSlow 15s ease-in-out infinite;
  border-radius: 50%;
}

.services-preview__bg-shape:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 70%;
  left: 90%;
  animation: floatSlow 18s ease-in-out infinite reverse;
  border-radius: 30%;
}

.services-preview__bg-shape:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 80%;
  animation: floatSlow 20s ease-in-out infinite;
  opacity: 0.03;
}

.services-preview__bg-shape:nth-child(4) {
  width: 50px;
  height: 50px;
  top: 80%;
  left: 15%;
  animation: floatSlow 12s ease-in-out infinite reverse;
  border-radius: 40%;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) translateX(10px) rotate(60deg);
  }
  66% {
    transform: translateY(-30px) translateX(-5px) rotate(120deg);
  }
}

.service-card {
  background: var(--gray-100);
  padding: 3.5rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--gray-300);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: none;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(44, 137, 195, 0.1),
    transparent
  );
  z-index: -1;
}

.service-card:hover {
  text-decoration: none;
  color: inherit;
}

.service-card__icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--black);
  font-size: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(44, 137, 195, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.service-card:hover .service-card__icon::before {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-card__description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card__link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-card:hover .service-card__link {
  color: #2c89c3;
  gap: 12px;
}

.service-card:hover .service-card__link i {
  color: #2c89c3;
}

/* Value Proposition Section */
.value-prop {
  padding: 100px 0;
}

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

.value-prop__list {
  list-style: none;
  margin: 2rem 0;
}

.value-prop__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.value-prop__item i {
  color: var(--white);
  font-size: 1.2rem;
}

.value-prop__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: var(--gray-100);
  border-radius: 16px;
}

.stat__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat__label {
  color: var(--text-light);
  font-weight: 600;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  color: var(--white);
  text-align: center;
}

.cta__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta__description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta__link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

/* CTA Background Shapes */
.cta__bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cta__bg-shape {
  position: absolute;
  opacity: 0.06;
  background: linear-gradient(
    45deg,
    var(--accent-color),
    rgba(255, 255, 255, 0.2)
  );
  border-radius: 50%;
}

.cta__bg-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation: pulseGlow 10s ease-in-out infinite;
}

.cta__bg-shape:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 85%;
  animation: pulseGlow 8s ease-in-out infinite reverse;
  border-radius: 20%;
}

.cta__bg-shape:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 80%;
  animation: pulseGlow 12s ease-in-out infinite;
  opacity: 0.04;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.06;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.1;
  }
}

.cta__link i {
  color: var(--accent-color);
}

.cta__link:hover {
  gap: 12px;
}

/* Page Header */
.page-header {
  background: var(--black);
  color: var(--white);
  padding: 150px 0 100px;
  text-align: center;
}

.page-header__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-header__description {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Page Content */
.page-content {
  padding: 100px 0;
}

.content {
  max-width: 800px;
  margin: 0 auto;
}

.content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--white);
}

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

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

.content ul,
.content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.content li {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 4rem 0 2rem;
}

/* Homepage-specific footer styling */
.homepage .footer {
  background-color: transparent;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer__logo-icon {
  color: var(--white);
  font-size: 1.2rem;
}

.footer__logo-text {
  font-size: 1.5rem;
  font-weight: 800;
}

.footer__description {
  color: var(--gray-300);
  line-height: 1.6;
  max-width: 300px;
}

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

.footer__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__link {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gray-800);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background-color: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-300);
}

/* What We Do Page Styles */
.what-we-do-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-bg);
  color: var(--white);
}

.what-we-do-hero--reduced-spacing {
  min-height: 70vh;
  padding: 40px 0;
}

.what-we-do-hero--minimal-spacing {
  min-height: 60vh;
  padding: 20px 0;
}

.what-we-do-hero__bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.what-we-do-hero__bg-shape {
  position: absolute;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.03;
  animation: float 15s ease-in-out infinite;
}

.what-we-do-hero__bg-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.what-we-do-hero__bg-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.what-we-do-hero__bg-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

.what-we-do-hero__bg-shape:nth-child(4) {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 10%;
  animation-delay: 1s;
}

.what-we-do-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: start;
  width: 100%;
  margin: 0;
  max-width: none;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: -10vh;
}

.what-we-do-hero--right .what-we-do-hero__container {
  grid-template-columns: 40% 60%;
}

.what-we-do-hero__content {
  width: 100%;
  transform: translateY(-5vh);
}

.what-we-do-hero--right .what-we-do-hero__content {
  order: 2;
}

.what-we-do-hero__title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-align: left;
}

.what-we-do-hero--right .what-we-do-hero__title {
  text-align: right;
}

.what-we-do-hero__title--accent {
  color: var(--accent-color);
}

.what-we-do-hero__icon {
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.8;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}

.what-we-do-hero__image {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}

.what-we-do-hero__image img {
  max-width: 90%;
  width: auto;
  max-height: 45vh;
  height: auto;
  border-radius: 8px;
  opacity: 0.9;
  object-fit: contain;
}

/* Empty column for spacing */
.what-we-do-hero__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(10vh);
}

.what-we-do-hero__cta-text {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.what-we-do-hero__cta-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.what-we-do-hero__cta-link i {
  color: var(--accent-color);
}

.what-we-do-hero__cta-link:hover {
  gap: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .what-we-do-hero__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .what-we-do-hero__image img {
    max-height: 35vh;
  }
}

@media (max-width: 768px) {
  .what-we-do-hero__container {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
  }

  .what-we-do-hero__content {
    order: 1 !important;
    align-items: center !important;
  }

  .what-we-do-hero__cta {
    order: 2 !important;
    transform: translateY(0);
    text-align: center;
  }

  .what-we-do-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center !important;
  }

  .what-we-do-hero__cta-text {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .what-we-do-hero__image img {
    max-width: 280px;
    max-height: 220px;
  }
}

/* What We Do Responsive Styles */
@media screen and (max-width: 768px) {
  .what-we-do-hero__container,
  .what-we-do-hero--left .what-we-do-hero__container,
  .what-we-do-hero--right .what-we-do-hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 15px;
  }

  .what-we-do-hero--right .what-we-do-hero__content,
  .what-we-do-hero--right .what-we-do-hero__cta {
    order: initial;
  }

  .what-we-do-hero__content {
    transform: none;
    text-align: center;
  }

  .what-we-do-hero__cta {
    transform: none;
    text-align: left;
  }

  .what-we-do-hero__icon {
    margin: 0 auto 2rem;
  }

  .what-we-do-hero__title {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .what-we-do-hero__container {
    padding: 0 15px;
  }

  .what-we-do-hero__icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
}

/* Responsive Design */
@media screen and (max-width: 1175px) {
  .nav {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav__menu {
    position: fixed;
    left: -100vw;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
    padding: 6rem 2rem 2rem;
    transition: left 0.3s ease;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-sizing: border-box;
    max-width: none;
    transform: none;
  }

  .nav__menu.show-menu {
    left: 0;
    width: 100%;
  }

  .nav__list {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
    position: static;
    transform: none;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    font-size: 1.5rem;
    padding: 1.5rem;
    display: block;
    width: 100%;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .nav__link:hover {
    color: var(--accent-color);
    transform: translateX(10px);
  }

  .nav__close,
  .nav__toggle {
    display: block;
  }

  .nav__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
  }

  .nav__toggle {
    order: 1;
    z-index: 5;
  }
}

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

  .nav {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .nav__brand {
    font-size: 1.3rem;
    padding-left: 0.5rem;
  }

  .nav__toggle {
    padding-right: 0.5rem;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 15px;
  }

  .hero__content {
    padding-left: 0;
  }

  .hero__cta {
    text-align: left;
    padding-left: 0;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .services-preview__grid {
    grid-template-columns: 1fr;
  }

  .service-card__link i {
    color: #2c89c3;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .nav {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .nav__brand {
    font-size: 1.2rem;
    padding-left: 0.75rem;
  }

  .nav__toggle {
    padding-right: 0.75rem;
  }

  .hero__container {
    padding: 0 15px;
  }

  .hero__content {
    padding-left: 0;
  }

  .hero__cta {
    padding-left: 0;
  }

  .service-card__link i {
    color: #2c89c3;
  }

  .hero__actions {
    gap: 0.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .section__title {
    font-size: 2rem;
  }

  .cta__title {
    font-size: 2rem;
  }
}

/* Accordion Section Styles */
.accordion-section {
  padding: 100px 0;
  background: var(--black);
}

.accordion-section--close {
  padding: 40px 0 100px 0;
}

.accordion-section--minimal {
  padding: 20px 0 100px 0;
}

/* Combined Section Styles */
.combined-section {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 60px 0 100px 0;
}

.combined-section__header {
  padding-bottom: 40px;
}

.combined-section__header .what-we-do-hero__content {
  transform: translateY(-12vh);
  order: 2;
}

.combined-section__header .what-we-do-hero__cta {
  order: 1;
  transform: translateY(10vh);
  padding-right: 4rem;
  max-width: 70%;
  margin-right: 3rem;
  padding-left: 2rem;
}

.combined-section__header .what-we-do-hero__cta-text {
  margin-bottom: 1rem;
  padding-right: 2rem;
  font-size: 1rem;
  line-height: 1.5;
}

.combined-section__header .what-we-do-hero__title {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .combined-section {
    padding: 40px 0 60px 0;
  }

  .combined-section__header {
    padding-bottom: 20px;
  }

  .combined-section__header .what-we-do-hero__content {
    transform: translateY(-2vh);
  }

  .combined-section__header .what-we-do-hero__cta {
    transform: translateY(0);
    padding-right: 0;
    max-width: 100%;
    margin-right: 0;
    padding-left: 0;
  }

  .combined-section__header .what-we-do-hero__cta-text {
    padding-right: 0;
    font-size: 1rem;
  }

  .combined-section__header .what-we-do-hero__title {
    text-align: center;
  }
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--gray-300);
  margin-bottom: 0;
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  padding-left: 2rem;
}

.accordion__header:hover {
  border-left-color: var(--accent-color);
  padding-left: 2.5rem;
}

.accordion__header.active {
  border-left-color: var(--accent-color);
  padding-left: 2.5rem;
}

.accordion__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  transition: color 0.3s ease;
}

.accordion__header:hover .accordion__title,
.accordion__header.active .accordion__title {
  color: var(--accent-color);
}

.accordion__icon {
  font-size: 1.2rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  margin-right: 2rem;
}

.accordion__header.active .accordion__icon {
  transform: rotate(45deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion__content.active {
  max-height: 1500px;
}

.accordion__content-inner {
  padding: 0 2rem 2rem 2rem;
  border-left: 4px solid var(--accent-color);
  margin-left: 2rem;
}

.accordion__content-inner h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin: 1.5rem 0 0.8rem;
}

.accordion__content-inner h3:first-child {
  margin-top: 0;
}

.accordion__content-inner p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.accordion__content-inner p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .accordion-section {
    padding: 60px 0;
  }

  .accordion {
    margin: 0 1rem;
  }

  .accordion__header {
    padding: 1.5rem 0;
    padding-left: 1rem;
  }

  .accordion__header:hover,
  .accordion__header.active {
    padding-left: 1.5rem;
  }

  .accordion__title {
    font-size: 1.5rem;
  }

  .accordion__icon {
    margin-right: 1rem;
  }

  .accordion__content-inner {
    padding: 0 1rem 1.5rem 1rem;
    margin-left: 1rem;
  }

  .accordion__content-inner h3 {
    font-size: 1.2rem;
  }

  .accordion__content-inner p {
    font-size: 1rem;
  }
}
