* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #222;
  background-color: #f9f9f9;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #f57c00;
}

.nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.nav a:hover {
  color: #f57c00;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #1e1e25, #2b2b36);
  color: #fff;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 800;
  color: #e0e0e0;
  text-decoration: none;
  letter-spacing: 1.2px;
  transition: all 0.3s ease;
  text-shadow: 0 0 6px rgba(119,168,153,0.5);
}

.logo:hover {
  color: #9D7DFF;
  text-shadow: 0 0 12px rgba(119,168,153,0.9);
}

.logo span {
  color: #9D7DFF; 
  margin-left: 6px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  margin-right: 14px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 6px #9D7DFF);
}

.nav {
  display: flex;
  gap: 30px;
  transition: all 0.3s ease;
}

.nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #9D7DFF;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #9D7DFF, #9D7DFF);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #e0e0e0;
  border-radius: 3px;
  transition: all 0.4s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    background: linear-gradient(135deg, #1e1e25, #2b2b36);
    flex-direction: column;
    width: 260px;
    padding: 30px 20px;
    gap: 20px;
    border-left: 3px solid #9D7DFF;
    box-shadow: -5px 0 30px rgba(0,0,0,0.6);
    transition: right 0.4s ease;
  }

  .nav.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .logo {
    font-size: 1.4rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }
}

.hero-epic {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 8vw, 140px) 20px 60px;
  color: #fff;
  text-align: center;
  background: linear-gradient(145deg, #0e0e0e, #1a1a28);
}

.hero-epic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(119,168,153,0.1), transparent 80%);
  animation: rotateGradient 40s linear infinite;
  z-index: 0;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: .12em;
  color: #9D7DFF;
  margin-bottom: 16px;
  font-size: 14px;
  text-shadow: 0 0 10px rgba(119,168,153,0.5);
  z-index: 1;
  position: relative;
}

.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  margin: 8px 0 20px;
  letter-spacing: -0.01em;
  color: #efe0f0;
  text-shadow: 0 0 20px rgb(195 68 192 / 60%), 0 2px 15px rgb(0 0 0 / 40%);
  z-index: 1;
  position: relative;
}

.hero-title__accent {
  display: block;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  color: #9D7DFF;
  margin-top: 10px;
  text-shadow: 0 0 15px rgba(79,80,129,0.6);
}

.hero-sub {
  max-width: 60ch;
  margin: 0 auto 28px;
  color: #c0c0c0;
  font-size: 1.15rem;
  line-height: 1.9;
  text-shadow: 0 0 10px rgba(0,0,0,0.25);
  z-index: 1;
  position: relative;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
}

.btn--primary {
  background: linear-gradient(90deg,#9D7DFF,#DC7BDF);
  color: #fff;
  padding: 16px 26px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(79,129,120,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(79,129,120,0.6);
}

.btn--ghost {
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
  list-style: none;
  font-weight: 600;
  color: rgba(245,245,245,0.95);
  font-size: 14px;
  z-index: 1;
  position: relative;
}

.hero-note {
  margin-top: 32px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  color: #bbb;
  line-height: 1.8;
  text-shadow: 0 0 8px rgba(0,0,0,0.3);
  z-index: 1;
  position: relative;
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(28px, 7vw, 44px); }
  .hero-title__accent { font-size: clamp(14px, 2vw, 18px); }
  .hero-sub, .hero-note { font-size: 1rem; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-trust { flex-direction: column; gap: 12px; }
}


.build-services {
  background: #101010;
  color: #fff;
  padding: 90px 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.build-services__container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.build-services__title {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #9D7DFF; 
  text-transform: uppercase;
  letter-spacing: 2px;
}

.build-services__subtitle {
  color: #c0c0c0;
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.build-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}

.build-services__card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transition: all 0.5s ease;
  transform: translateY(40px);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.build-services__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(79,129,120,0.3);
}

.build-services__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid rgba(79,129,120,0.3);
}

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

.build-services__card:hover img {
  transform: scale(1.1);
}

.build-services__card-title {
  font-size: 1.25rem;
  color: #9D7DFF; 
  margin: 20px 0 10px;
  padding: 0 18px;
  text-align: left;
}

.build-services__card-text {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.55;
  padding: 0 18px 25px;
  text-align: left;
  flex-grow: 1;
}

.build-services__card.show {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.9s ease;
}

@media (max-width: 1100px) {
  .build-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .build-services__title {
    font-size: 2rem;
  }

  .build-services__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .build-services__image {
    height: 220px;
  }

  .build-services__card-title {
    font-size: 1.15rem;
    padding: 0 15px;
  }

  .build-services__card-text {
    padding: 0 15px 25px;
  }
}
.build-about {
  position: relative;
  background: #101010;
  color: #fff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.build-about__wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 50px 20px;
}

.build-about__image {
  position: relative;
  overflow: hidden;
  height: 550px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.build-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  filter: brightness(75%);
  transition: transform 1.5s ease, filter 1s ease;
  border-radius: 20px;
}

.build-about:hover .build-about__image img {
  transform: scale(1.15);
  filter: brightness(80%);
}

.build-about__content {
  background: linear-gradient(145deg, #1a1a1a, #101010);
  padding: 60px 50px;
  border-radius: 20px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(60px);
  opacity: 0;
  transition: all 1s ease;
  box-shadow: 0 15px 40px rgba(79,129,120,0.3);
}

.build-about__content.show {
  transform: translateX(0);
  opacity: 1;
}

.build-about__title {
  font-size: 2.6rem;
  color: #9D7DFF;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.build-about__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #c0c0c0;
  margin-bottom: 25px;
}

.build-about__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  border: 2px solid #9D7DFF;
  color: #9D7DFF;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
  align-self: flex-start;
}

.build-about__btn:hover {
  background: #9D7DFF;
  color: #101010;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .build-about__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .build-about__image {
    height: 350px;
  }

  .build-about__content {
    padding: 50px 25px;
    transform: translateY(30px);
  }

  .build-about__title {
    font-size: 2rem;
  }

  .build-about__btn {
    padding: 12px 26px;
  }
}

.projects-section {
  background: #101010;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
}

.projects-section__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.projects-section__title {
  font-size: 2.8rem;
  color: #9D7DFF;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.projects-section__subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 60px;
  line-height: 1.6;
}

.projects-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.projects-section__card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.projects-section__card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  border-radius: 18px;
}

.projects-section__card:hover img {
  transform: scale(1.08);
  filter: brightness(80%);
}

.projects-section__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  color: #9D7DFF;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20px);
}

.projects-section__card:hover .projects-section__info {
  opacity: 1;
  transform: translateY(0);
}

.projects-section__info h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.projects-section__info p {
  font-size: 1rem;
  color: #c0c0c0;
  line-height: 1.4;
}

.projects-section__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(79,129,120,0.4);
}

@media (max-width: 1024px) {
  .projects-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-section__grid {
    grid-template-columns: 1fr;
  }

  .projects-section__card img {
    height: 250px;
  }
}

.faq-section {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
}

.faq-section__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.faq-section__title {
  font-size: 2.8rem;
  color: #9D7DFF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(79,80,129,0.5);
}

.faq-section__subtitle {
  font-size: 1.15rem;
  color: #b0b0b0;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* FAQ Items */
.faq-section__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: #121212;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 10px rgba(79,80,129,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 15px rgba(77,168,153,0.3);
}

.faq-item__question {
  width: 100%;
  padding: 20px 25px;
  background: linear-gradient(90deg, #121212, #1a1a1a);
  border: none;
  color: #9D7DFF;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease;
  border-bottom: 1px solid rgba(77,168,153,0.2);
}

.faq-item__question:hover {
  color: #9D7DFF;
  background: rgba(79,80,129,0.05);
}

.faq-item__icon {
  font-size: 1.6rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  color: #FFD700;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.8;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
  padding: 20px 25px 25px;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-section__items {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .faq-section__title {
    font-size: 2rem;
  }
  .faq-section__subtitle {
    font-size: 1rem;
  }
  .faq-item__question {
    font-size: 1rem;
  }
  .faq-item__answer {
    font-size: 0.95rem;
  }
}

.contact-section {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
}

.contact-section__container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-section__title {
  font-size: 2.6rem;
  color: #9D7DFF;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-section__subtitle {
  font-size: 1.1rem;
  color: #bcbcbc;
  line-height: 1.6;
}

/* Ліво-правильний макет */
.contact-section__layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Форма */
.contact-section__form {
  flex: 1;
  background: linear-gradient(145deg, #121212, #1a1a1a);
  padding: 45px 35px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.5), 0 0 20px rgba(79,80,129,0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section__form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.6), 0 0 25px rgba(79,80,129,0.3);
}

.contact-section__form input,
.contact-section__form textarea {
  padding: 16px 20px;
  border-radius: 12px;
  border: none;
  background: #1c1c1c;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-section__form input:focus,
.contact-section__form textarea:focus {
  outline: none;
  background: #232323;
  box-shadow: 0 0 12px rgba(119,168,153,0.6);
}

.contact-section__form button {
  padding: 16px 35px;
  border-radius: 50px;
  border: 2px solid #9D7DFF;
  background: linear-gradient(90deg, #9D7DFF, #9D7DFF);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-section__form button:hover {
  background: #0e0e0e;
  color: #9D7DFF;
  border-color: #9D7DFF;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(119,168,153,0.5);
}

/* Інформаційний блок */
.contact-section__info {
  flex: 1;
  background: #121212;
  padding: 45px 35px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.5), 0 0 20px rgba(119,168,153,0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section__info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.6), 0 0 25px rgba(119,168,153,0.4);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}

.contact-item a {
  color: #9D7DFF;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-item a:hover {
  color: #9D7DFF;
  text-shadow: 0 0 6px rgba(119,168,153,0.5);
}

.contact-icon {
  font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-section__layout {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-section__title {
    font-size: 2rem;
  }
  .contact-section__subtitle {
    font-size: 1rem;
  }
}


.footer {
  background: #0f1118;
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px 35px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #536dff, #9b4fff, #ff5bb0) 1;
  box-shadow: 0 -15px 40px rgba(0,0,0,0.4);
}

.fancy-logo {
  justify-content: center;
}

.fancy-logo span {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7284ff, #b17cff, #ff7cce);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 1.5px;
  text-shadow: 0 0 12px rgba(129,115,255,0.3);
  position: relative;
}

/* Subtle glitch effect */
.fancy-logo span::before {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  top: 0;
  opacity: 0.15;
  filter: blur(1px);
}

/* ——— Links ——— */
.footer__section a {
  color: #fff;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.footer__section a:hover {
  color: #9ca4ff;
  border-bottom: 1px solid #9ca4ff;
}

/* Phone link highlighted */
.tel-link {
  font-weight: 600;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 45px;
}

/* All columns styled consistently */
.footer__section {
  min-width: 0;
}

.footer__office p,
.footer__sectors li {
  font-size: 0.95rem;
  color: #dedede;
}

.footer__sectors ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.footer__section h4 {
  color: #7c8aff;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Contacts + Sectors in 1 row */
.footer__contacts-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Socials at bottom */
.footer__socials-wide {
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
}

.footer__social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer__social-icons img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: .3s;
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
}

.footer__social-icons img:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 0 15px rgba(137,117,255,0.6);
}

/* Bottom */
.footer__bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #9a9a9a;
}

/* Responsive */
@media (max-width: 992px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__contacts-row {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer__tagline {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}


.policy {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 80px 20px;
  line-height: 1.7;
}

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

.policy__title {
  font-size: 2.8rem;
  color: #9D7DFF;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.policy__updated {
  text-align: center;
  color: #b0b0b0;
  font-size: 0.95rem;
  margin-bottom: 40px;
  font-style: italic;
}

.policy__section {
  margin-bottom: 35px;
}

.policy__section h2 {
  font-size: 1.6rem;
  color: #9D7DFF;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.policy__section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #9D7DFF;
  border-radius: 50%;
}

.policy__section p,
.policy__section li {
  color: #d0d0d0;
  font-size: 1rem;
}

.policy__section ul {
  padding-left: 20px;
  list-style: disc;
  margin-top: 10px;
}

.policy__section a {
  color: #9D7DFF;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy__section a:hover {
  color: #76b2a7;
}

@media (max-width: 768px) {
  .policy__title {
    font-size: 2.2rem;
  }

  .policy__section h2 {
    font-size: 1.4rem;
  }
}

.contact-hero {
  background: url('images/contact-hero.jpg') center/cover no-repeat;
  padding: 180px 20px;
  text-align: center;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(79,129,120,0.75), rgba(79,129,120,0.45));
  mix-blend-mode: overlay;
}

.contact-hero-content {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  animation: fadeUp 1.2s ease forwards;
}

.contact-hero h1 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-shadow: 0 5px 20px rgba(0,0,0,0.35);
  background: linear-gradient(120deg, #9D7DFF, #3b615a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #e0f2f1;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.25);
}

.contact-hero .cta-btn {
  display: inline-block;
  padding: 18px 45px;
  background: #9D7DFF;
  color: #fff;
  border-radius: 14px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
  transition: all 0.5s ease;
}

.contact-hero .cta-btn:hover {
  background: #3b615a;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 18px 46px rgba(0,0,0,0.35);
}

.contact-location {
  padding: 140px 20px;
  background: linear-gradient(135deg, #0e0e0e, #1a1a2e);
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.contact-location::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(77,168,153,0.2), transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.location-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #9D7DFF;
  text-shadow: 0 0 15px rgba(119,168,153,0.8), 0 0 25px rgba(119,168,153,0.5);
  position: relative;
  z-index: 1;
}

.location-description {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 35px;
  line-height: 1.8;
  text-shadow: 0 0 10px rgba(255,255,255,0.15), 0 0 20px rgba(119,168,153,0.25);
  position: relative;
  z-index: 1;
}

.route-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid #9D7DFF;
  background: #9D7DFF;
  color: #0e0e0e;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px rgba(119,168,153,0.6);
}

.route-btn:hover {
  background: transparent;
  color: #9D7DFF;
  transform: scale(1.05);
  border-color: #9D7DFF;
  box-shadow: 0 0 25px rgba(119,168,153,0.8), 0 0 35px rgba(77,168,153,0.5);
}

@media (max-width: 768px) {
  .location-title { font-size: 2.4rem; }
  .location-description { font-size: 1.05rem; }
  .route-btn { padding: 14px 28px; font-size: 0.95rem; }
}


.route-btn {
  display: inline-block;
  padding: 18px 40px;
  background: #9D7DFF;
  color: #fff;
  border-radius: 14px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 36px rgba(0,0,0,0.25);
  transition: all 0.5s ease;
}

.route-btn:hover {
  background: #3b615a;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}

.location-map {
  flex: 1 1 600px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 35px 120px rgba(0,0,0,0.22);
  transition: transform 0.5s ease;
}

.location-map img {
  width: 100%;
  border-radius: 30px;
  transition: transform 0.5s ease;
}

.location-map:hover {
  transform: scale(1.04);
}
.trusted-section {
  background: linear-gradient(135deg, #0e0e0e, #121212);
  padding: 140px 20px;
  text-align: center;
  color: #fff;
}

.trusted-title {
  font-size: 3rem;
  color: #9D7DFF;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 0 12px rgba(79,80,129,0.6);
}

.trusted-subtitle {
  font-size: 1.2rem;
  color: #bcbcbc;
  max-width: 750px;
  margin: 0 auto 60px auto;
  line-height: 1.8;
}

/* Cards Grid */
.trusted-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* Individual Card */
.trusted-card {
  background: linear-gradient(145deg, #121212, #1c1c1c);
  border-radius: 25px;
  padding: 50px 35px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 15px rgba(77,168,153,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
}

.trusted-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 35px 90px rgba(0,0,0,0.8), 0 0 25px rgba(119,168,153,0.25);
  background: linear-gradient(145deg, #1c1c1c, #292940);
}

/* Quote */
.trusted-quote {
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 25px;
  position: relative;
}

.trusted-quote::before,
.trusted-quote::after {
  content: '“';
  font-size: 3rem;
  color: #9D7DFF;
  position: absolute;
  opacity: 0.15;
}

.trusted-quote::before { top: -20px; left: -10px; }
.trusted-quote::after { content:'”'; bottom: -25px; right: -10px; }

/* Author */
.trusted-author {
  display: block;
  font-weight: 700;
  color: #9D7DFF;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .trusted-title { font-size: 2.6rem; }
  .trusted-subtitle { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .trusted-cards { grid-template-columns: 1fr; gap: 30px; }
  .trusted-title { font-size: 2.2rem; }
  .trusted-subtitle { font-size: 1rem; }
}

@media (max-width: 480px) {
  .trusted-card { padding: 35px 25px; }
  .trusted-title { font-size: 1.9rem; }
  .trusted-subtitle { font-size: 0.95rem; }
  .trusted-quote { font-size: 1rem; }
  .trusted-author { font-size: 0.95rem; }
}


.why-us {
  background: linear-gradient(135deg, #0e0e0e 0%, #121212 100%);
  padding: 140px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.why-us__title {
  font-size: 3rem;
  color: #9D7DFF;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(79,80,129,0.6);
}

.why-us__subtitle {
  font-size: 1.2rem;
  color: #bcbcbc;
  margin-bottom: 60px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Grid Layout */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 45px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual Cards */
.why-us__item {
  background: linear-gradient(145deg, #1c1c1c, #232323);
  padding: 50px 35px;
  border-radius: 28px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.5), 0 0 25px rgba(79,80,129,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.why-us__item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 35px rgba(119,168,153,0.25);
  background: linear-gradient(145deg, #232323, #292940);
}

.why-us__item h3 {
  font-size: 1.7rem;
  color: #9D7DFF;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(79,80,129,0.5);
}

.why-us__item p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-us__title { font-size: 2.6rem; }
  .why-us__subtitle { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .why-us__grid { grid-template-columns: 1fr; gap: 30px; }
  .why-us__title { font-size: 2.2rem; }
  .why-us__subtitle { font-size: 1rem; }
}

@media (max-width: 480px) {
  .why-us__item { padding: 40px 25px; }
  .why-us__title { font-size: 1.9rem; }
  .why-us__subtitle { font-size: 0.95rem; }
}


.projects-hero {
  background: linear-gradient(135deg, #1a1a2e, #0e0e0e);
  color: #fff;
  text-align: center;
  padding: 160px 20px;
  position: relative;
  overflow: hidden;
}

.projects-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(77,168,153,0.15), transparent 70%);
  animation: rotateGradient 25s linear infinite;
  z-index: 0;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.projects-title {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #9D7DFF;
  text-shadow: 0 0 15px rgba(119,168,153,0.6), 0 0 25px rgba(119,168,153,0.4);
  position: relative;
  z-index: 1;
}

.projects-subtitle {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #ccc;
  text-shadow: 0 0 8px rgba(255,255,255,0.1), 0 0 15px rgba(119,168,153,0.2);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .projects-title { font-size: 2.6rem; }
  .projects-subtitle { font-size: 1.1rem; }
}

.projects-gallery {
  padding: 120px 20px;
  background: #fdfdfd;
  text-align: center;
}

.projects-gallery h2 {
  font-size: 2.6rem;
  color: #9D7DFF;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}

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

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(79,129,120,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.overlay h3 {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.project-process {
  background: linear-gradient(135deg, #eaf1ef, #ffffff);
  padding: 120px 20px;
  text-align: center;
}

.project-process h2 {
  font-size: 2.6rem;
  margin-bottom: 70px;
  color: #9D7DFF;
  font-weight: 700;
  letter-spacing: 1px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.step-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #9D7DFF;
  position: absolute;
  top: 20px;
  right: 25px;
  opacity: 0.15;
}

.step h3 {
  color: #9D7DFF;
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.step p {
  color: #555;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .projects-hero h1 {
    font-size: 3rem;
  }
  .projects-hero p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .projects-hero h1 {
    font-size: 2.2rem;
  }
  .projects-hero p {
    font-size: 1rem;
  }

  .process-steps {
    gap: 30px;
  }
}

@media (max-width: 500px) {
  .projects-hero {
    padding: 100px 15px;
  }
  .gallery-item .overlay h3 {
    font-size: 1.3rem;
  }
  .step {
    padding: 35px 20px;
  }
  .step h3 {
    font-size: 1.2rem;
  }
}

.services-hero {
  position: relative;
  background: linear-gradient(135deg, #1f1f28, #0e0e0e);
  padding: 160px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(119,168,153,0.15), transparent 70%);
  animation: rotateGradient 25s linear infinite;
  z-index: 0;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.services-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #9D7DFF;
  text-shadow: 0 0 15px rgba(119,168,153,0.6), 0 0 25px rgba(119,168,153,0.4);
  position: relative;
  z-index: 1;
}

.services-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(255,255,255,0.1), 0 0 15px rgba(119,168,153,0.2);
  position: relative;
  z-index: 1;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  background: #9D7DFF;
  color: #0e0e0e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px rgba(119,168,153,0.6);
}

.cta-btn:hover {
  background: transparent;
  color: #9D7DFF;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(119,168,153,0.8), 0 0 35px rgba(77,168,153,0.5);
}

@media (max-width: 768px) {
  .services-title { font-size: 2.6rem; }
  .services-subtitle { font-size: 1.05rem; }
  .cta-btn { padding: 14px 32px; font-size: 0.95rem; }
}


.services-list {
  background: #f7f9f8;
  padding: 100px 20px;
  text-align: center;
}

.services-list h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #223330;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-item {
  background: #fff;
  padding: 40px 28px;
  border-radius: 16px;
  border: 1px solid #e2e6e4;
  transition: all 0.35s ease;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
  color: #9D7DFF;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-item p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

.services-process {
  background: linear-gradient(180deg, #e8f0ed 0%, #ffffff 100%);
  padding: 100px 20px;
  text-align: center;
}

.services-process h2 {
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #223330;
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: #fff;
  border-radius: 14px;
  padding: 45px 30px;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  border-top: 4px solid #9D7DFF;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  color: #9D7DFF;
  opacity: 0.2;
  font-weight: 800;
}

.step h3 {
  color: #9D7DFF;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step p {
  color: #555;
  line-height: 1.6;
}

.services-cta {
  background: #9D7DFF;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.services-cta h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #e6f4f1;
}

.services-cta .cta-btn {
  background: #fff;
  color: #9D7DFF;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.services-cta .cta-btn:hover {
  background: #dff1ed;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .services-hero {
    padding: 120px 15px;
  }
  .services-hero h1 {
    font-size: 2.4rem;
  }
  .services-hero p {
    font-size: 1rem;
  }
  .services-list h2,
  .services-process h2,
  .services-cta h2 {
    font-size: 1.8rem;
  }
  .service-item,
  .step {
    padding: 30px 20px;
  }
}
.about-hero {
  position: relative;
  background: linear-gradient(135deg, #0e0e0e, #1a1a28);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 120px 20px;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(119,168,153,0.1), transparent 80%);
  animation: rotateGradient 30s linear infinite;
  z-index: 0;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #9D7DFF;
  text-shadow: 0 0 15px rgba(119,168,153,0.6), 0 0 25px rgba(119,168,153,0.4);
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.about-subtitle {
  font-size: 1.25rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 50px;
  text-shadow: 0 0 10px rgba(255,255,255,0.1), 0 0 20px rgba(119,168,153,0.2);
  z-index: 1;
  position: relative;
}

.cta-btn {
  display: inline-block;
  padding: 16px 44px;
  border-radius: 50px;
  background: #9D7DFF;
  color: #0e0e0e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px rgba(119,168,153,0.6);
}

.cta-btn:hover {
  background: transparent;
  color: #9D7DFF;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(119,168,153,0.8), 0 0 35px rgba(77,168,153,0.5);
}

@media (max-width: 768px) {
  .about-title { font-size: 2.6rem; }
  .about-subtitle { font-size: 1.05rem; }
  .cta-btn { padding: 14px 36px; font-size: 0.95rem; }
}


.about-history-premium {
  background: #f6f8f7;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.about-history-premium h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 70px;
  color: #223330;
}

.history-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.history-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(79, 129, 120, 0.3);
  transform: translateY(-50%);
  z-index: 1;
}

.history-item {
  position: relative;
  width: calc(25% - 20px);
  background: #fff;
  border-radius: 14px;
  padding: 35px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  z-index: 2;
  transition: all 0.4s ease;
}

.history-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.history-year {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #9D7DFF;
  margin-bottom: 12px;
}

.history-item p {
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
}

.about-values {
  background: #ffffff;
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.about-values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #9D7DFF;
}

.about-values h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #223330;
  margin: 70px 0 70px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 45px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-item {
  background: linear-gradient(180deg, #f9fbfa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 45px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #9D7DFF;
  opacity: 0.85;
  transition: width 0.3s ease;
}

.value-item:hover::before {
  width: 100%;
  opacity: 0.1;
}

.value-item:hover {
  transform: translateY(-6px);
}

.value-item h3 {
  color: #9D7DFF;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.value-item p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .history-content {
    flex-direction: column;
    gap: 30px;
  }
  .history-content::before {
    display: none;
  }
  .history-item {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-hero h1 { font-size: 2.4rem; }
  .about-hero p { font-size: 1rem; }
  .about-values h2, .about-history-premium h2 { font-size: 2rem; }
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.team-member img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.2rem;
  color: #b88a44;
  margin-bottom: 8px;
}

.team-member p {
  color: #555;
  font-size: 0.95rem;
}

.about-values {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.about-values h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #222;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-item {
  background: #faf7f2;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.value-item h3 {
  color: #b88a44;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-item p {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-hero h1 { font-size: 2.2rem; }
  .about-hero p { font-size: 1rem; }
  .about-history h2, .about-team h2, .about-values h2 { font-size: 1.8rem; }
  .history-container p, .team-member p, .value-item p { font-size: 0.95rem; }
  .team-member, .value-item { padding: 25px 15px; }
}
.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2b2b2b, #111);
  color: #f5f5f5;
  padding: 20px 15px;
  text-align: center;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
  border-top: 3px solid #9D7DFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookies-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookies-content {
  max-width: 1024px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
}

.cookies-content p {
  margin: 0;
  color: #f5f5f5;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookies-content a {
  color: #9D7DFF;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookies-content a:hover {
  color: #76b2a7;
}

.cookies-btn {
  background: #9D7DFF;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cookies-btn:hover {
  background: #76b2a7;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .cookies-content {
    flex-direction: column;
    text-align: center;
  }

  .cookies-btn {
    margin-top: 10px;
  }
}