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

html {
  scroll-behavior: smooth;
}

body {
  color: #d16600;
  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;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
/* ========== HEADER ========== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 200, 200, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

header:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

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

/* ========== LOGO ========== */
.logo {
  display: flex;
  align-items: center;
  gap: 18px;

  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #333333;
  text-decoration: none;
  letter-spacing: 0.7px;

  transition: all 0.3s ease;
}

.logo:hover {
  color: #ff6f61;
}

.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff6f61;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0 4px 16px rgba(255,111,97,0.4);
}

/* ========== NAVIGATION ========== */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav a {
  position: relative;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #333333;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: #690000;
  transform: translateY(-2px) scale(1.05);
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: #ff6f61;
  transition: width 0.3s ease;
}

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

/* ========== BURGER MENU ========== */
.burger {
  display: none;
  position: relative;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255,111,97,0.1);
  padding: 6px;
  transition: background 0.3s ease;
}

.burger:hover {
  background: rgba(255,111,97,0.2);
}

.burger span {
  height: 4px;
  width: 100%;
  background: #ff6f61;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

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

/* ========== MOBILE MENU ========== */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 260px;

    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    padding: 30px 25px;

    border-left: 1px solid rgba(200, 200, 200, 0.3);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);

    transition: right 0.35s ease;
  }

  .nav.active {
    right: 0;
  }

  .burger {
    display: flex;
  }
}
.hero-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 12%;
  background: linear-gradient(135deg, #fff5f0, #e0f3ff);
  position: relative;
  overflow: hidden;
  gap: 60px;
  font-family: 'Montserrat', sans-serif;
}

.hero-modern__left {
  flex: 1;
  max-width: 650px;
  z-index: 2;
}

.hero-modern__eyebrow {
  font-weight: 700;
  color: #ff6f61;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-modern__title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1b2a3d;
  margin-bottom: 22px;
  line-height: 1.25;
}

.hero-modern__subtitle {
  font-size: 1.15rem;
  color: #4a5a6a;
  line-height: 1.75;
  margin-bottom: 35px;
}

.hero-modern__actions {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.btn--primary {
  background: linear-gradient(90deg, #ff6f61, #ff9c70);
  color: #fff;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.35s ease;
}

.btn--primary:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 28px rgba(255,111,97,0.35);
}

.btn--secondary {
  background: transparent;
  border: 2px solid #ff6f61;
  color: #ff6f61;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.35s ease;
}

.btn--secondary:hover {
  background: #ff6f61;
  color: #fff;
}

.hero-modern__right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-modern__image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  transform: rotate(-2deg);
  transition: transform 0.8s ease, box-shadow 0.8s ease;
}

.hero-modern__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-modern__image:hover {
  transform: rotate(0deg) scale(1.06);
  box-shadow: 0 28px 55px rgba(0,0,0,0.18);
}

/* Decorative circles */
.hero-modern__decor span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,111,97,0.15);
  z-index: 1;
}

.hero-modern__decor span:nth-child(1) {
  width: 130px;
  height: 130px;
  top: 12%;
  left: 12%;
}

.hero-modern__decor span:nth-child(2) {
  width: 90px;
  height: 90px;
  bottom: 18%;
  right: 12%;
}

.hero-modern__decor span:nth-child(3) {
  width: 160px;
  height: 160px;
  top: 52%;
  right: 18%;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-modern {
    flex-direction: column-reverse;
    text-align: center;
    padding: 70px 6%;
    gap: 40px;
  }

  .hero-modern__right {
    width: 100%;
  }

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

  .hero-modern__image {
    width: 85%;
    margin: 0 auto;
    transform: rotate(0deg);
  }
}



.build-services {
  background: #fdfcfb;
  color: #1a1a1a;
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
}

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

.build-services__title {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #3b3b3b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.build-services__subtitle {
  color: #6b6b6b;
  font-size: 1.15rem;
  margin-bottom: 70px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.build-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.build-services__card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.build-services__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.build-services__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 20px 20px 0 0;
}

.build-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(95%);
}

.build-services__card:hover img {
  transform: scale(1.08);
  filter: brightness(100%);
}

.build-services__card-title {
  font-size: 1.3rem;
  color: #2f2f2f;
  margin: 20px 18px 10px;
  font-weight: 600;
  text-align: left;
}

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

@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.2rem;
    padding: 0 15px;
  }

  .build-services__card-text {
    padding: 0 15px 25px;
  }
}
.build-about {
  position: relative;
  background: #fcfcfb;
  color: #2b2b2b;
  font-family: "Poppins", sans-serif;
  padding: 80px 20px;
}

.build-about__wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.build-about__image {
  position: relative;
  overflow: hidden;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.build-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.05);
  filter: brightness(92%);
  border-radius: 20px;
}

.build-about__image:hover img {
  transform: scale(1.1);
  filter: brightness(100%);
}

.build-about__content {
  background: linear-gradient(145deg, #ffffff 0%, #f4f6f8 100%);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(79,129,120,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s ease;
}

.build-about__title {
  font-size: 2.6rem;
  color: #ffb163;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.build-about__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 20px;
}

.build-about__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  border-radius: 50px;
  background: #ffb163;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  text-decoration: none;
  align-self: flex-start;
  box-shadow: 0 6px 20px rgba(52,73,94,0.3);
}

.build-about__btn:hover {
  background: #2c3e50;
  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: 40px 25px;
  }

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

.projects-section {
  background: #f5f7f8;
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
  color: #ffb163;
  text-align: center;
}

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

.projects-section__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.projects-section__subtitle {
  font-size: 1.15rem;
  color: #6c7a89;
  margin-bottom: 60px;
  line-height: 1.7;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.projects-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.projects-section__card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.projects-section__card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(95%);
}

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

.projects-section__info {
  padding: 20px 18px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.projects-section__info h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 12px;
  font-weight: 700;
}

.projects-section__info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d16600;
  flex-grow: 1;
}

/* Hover Effect */
.projects-section__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(79,129,120,0.15);
}

/* Responsive */
@media (max-width: 1024px) {
  .projects-section__title {
    font-size: 2.4rem;
  }
  .projects-section__subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .projects-section__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .projects-section__title {
    font-size: 2rem;
  }
}

.faq-section {
  background: linear-gradient(180deg, #fff5f2, #fff0eb);
  color: #2a2a2a;
  font-family: 'Poppins', sans-serif;
  padding: 90px 20px;
}

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

.faq-section__title {
  font-size: 2.4rem;
  color: #FF8E6B;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-section__subtitle {
  font-size: 1.05rem;
  color: #FFB37C;
  margin-bottom: 50px;
  line-height: 1.6;
}

.faq-section__items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: linear-gradient(145deg, #fff5f2, #fff0eb);
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #FFC6AD;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255,142,107,0.25);
}

.faq-item__question {
  width: 100%;
  padding: 20px 24px;
  background: #FFE6DC;
  border: none;
  color: #FF8E6B;
  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;
}

.faq-item__question:hover {
  background: #FFD9C7;
}

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

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

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #4d4d4d;
  font-size: 1rem;
  line-height: 1.7;
  background: #fff5f2;
  transition: max-height 0.45s ease, padding 0.45s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding: 18px 24px 22px;
}

/* Responsive */
@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: linear-gradient(145deg, #FFF0EB 0%, #FFF5F2 55%, #FFF7F5 100%);
  color: #3b3b3b;
  font-family: "Poppins", sans-serif;
  padding: 90px 20px;
}

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

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

.contact-section__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FF8E6B;
  margin-bottom: 10px;
}

.contact-section__subtitle {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-section__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

/* Contact Cards */
.contact-section__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FF8E6B;
  margin-bottom: 12px;
}

.contact-card {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(255,142,107,0.15);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255,142,107,0.25);
}

.contact-card a {
  color: #FF8E6B;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s;
}

.contact-card a:hover {
  color: #FFB37C;
  text-shadow: 0 0 5px rgba(255,179,124,0.25);
}

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

/* Form */
.contact-section__form {
  background: #fff;
  padding: 45px 35px;
  border-radius: 24px;
  box-shadow: 0 6px 22px rgba(255,142,107,0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form__title {
  font-size: 1.3rem;
  color: #FF8E6B;
  margin-bottom: 14px;
}

.contact-section__form input,
.contact-section__form textarea {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #FFD1BC;
  background: #fff5f2;
  font-size: 1rem;
  color: #3b3b3b;
  transition: all 0.25s ease;
}

.contact-section__form input:focus,
.contact-section__form textarea:focus {
  outline: none;
  border-color: #FF8E6B;
  box-shadow: 0 0 10px rgba(255,142,107,0.25);
  background: #fff;
}

.contact-section__form button {
  padding: 16px 32px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(95deg, #FF8E6B, #FFB37C);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.35s ease;
}

.contact-section__form button:hover {
  background: linear-gradient(95deg, #FF7A52, #FFA36A);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,142,107,0.25);
}

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

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

.footer {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  padding: 80px 40px 50px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

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

/* Brand */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 2rem;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(108,99,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  transform: scale(1.15);
  text-shadow: 0 0 12px rgba(108,99,255,0.5);
}

.logo:hover .logo-img {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(108,99,255,0.4);
}

.footer__description {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* Socials */
.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffb163;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer__socials a:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 20px rgba(108,99,255,0.35);
}

/* Links */
.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer__col h4 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #ffb163;
}

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

.footer__col a {
  text-decoration: none;
  color: #333;
  padding: 4px 0;
  display: block;
  transition: all 0.3s ease;
}

.footer__col a:hover {
  color: #ffb163;
  transform: translateX(4px);
}

/* CTA column */
.footer__cta h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffb163;
}

.footer__cta p {
  margin-bottom: 12px;
  line-height: 1.5;
  opacity: 0.85;
}

.footer__form {
  display: flex;
  gap: 8px;
}

.footer__form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.footer__form input:focus {
  border-color: #ffb163;
  box-shadow: 0 0 8px rgba(108,99,255,0.2);
}

.footer__form button {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(45deg, #ffb163, #a18eff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer__form button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(108,99,255,0.35);
}

/* Bottom bar */
.footer__bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 25px;
  font-size: 0.88rem;
  color: #666;
  border-top: 1px solid rgba(200,200,200,0.3);
  transition: all 0.3s ease;
}

.footer__bottom:hover {
  color: #ffb163;
}

/* Responsive */
@media (max-width: 992px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer__links {
    grid-template-columns: 1fr;
  }
  .footer__cta {
    margin-top: 20px;
  }
}

@media (max-width: 650px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(108, 99, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer__socials a img:hover {
  transform: translateY(-5px) scale(1.15);
  box-shadow: 0 8px 22px rgba(108, 99, 255, 0.35);
}




.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: #ffb163;
  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: #ffb163;
  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: #ffb163;
  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: #ffb163;
  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;
  }
}
.creative-launch {
  padding: 160px 25px;
  background: linear-gradient(145deg, #FFF0EB, #FFE6D9);
  text-align: center;
  color: #3b1f0b;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.creative-launch::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,142,107,0.08), transparent 60%);
  animation: pulse 20s linear infinite alternate;
  z-index: 0;
  border-radius: 50%;
}

.creative-launch::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: linear-gradient(120deg, rgba(255,142,107,0.12), rgba(255,179,71,0.12));
  filter: blur(80px);
  animation: wave 25s linear infinite;
  z-index: 0;
}

.launch-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #FF8E6B;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 6px rgba(255,142,107,0.3);
}

.launch-description {
  font-size: 1.2rem;
  color: #6b3a2a;
  margin-bottom: 40px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(255,142,107,0.15);
}

.launch-btn {
  display: inline-block;
  padding: 18px 42px;
  border-radius: 40px;
  border: 2px solid #FF8E6B;
  background: linear-gradient(45deg, #FF8E6B, #FFB347);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(255,142,107,0.25);
}

.launch-btn:hover {
  background: linear-gradient(45deg, #FFB347, #FF8E6B);
  color: #fff;
  transform: scale(1.1);
  border-color: #FFB347;
  box-shadow: 0 0 35px rgba(255,142,107,0.35), 0 0 45px rgba(255,179,71,0.25);
}

@keyframes pulse {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(180deg); }
  100% { transform: scale(1) rotate(360deg); }
}

@keyframes wave {
  0% { transform: translateX(-20%) rotate(0deg); }
  50% { transform: translateX(20%) rotate(180deg); }
  100% { transform: translateX(-20%) rotate(360deg); }
}

@media (max-width: 768px) {
  .launch-title { font-size: 2.4rem; }
  .launch-description { font-size: 1rem; }
  .launch-btn { padding: 16px 32px; font-size: 0.95rem; }
}

/* Contact Section */

.contact-section__info .contact-card {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff5f2;
  box-shadow: 0 6px 18px rgba(255,142,107,0.15);
  transition: all 0.3s ease;
}

.contact-section__info .contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255,142,107,0.25);
}

.contact-card a {
  color: #FF8E6B;
  text-decoration: none;
}

.contact-card a:hover {
  color: #FFB347;
}

.contact-section__form {
  background: #fff5f2;
  padding: 45px 35px;
  border-radius: 24px;
  box-shadow: 0 6px 22px rgba(255,142,107,0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-section__form input,
.contact-section__form textarea {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #FFC6AD;
  background: #fff7f5;
  font-size: 1rem;
  color: #3b3b3b;
  transition: all 0.25s ease;
}

.contact-section__form input:focus,
.contact-section__form textarea:focus {
  outline: none;
  border-color: #FF8E6B;
  box-shadow: 0 0 10px rgba(255,142,107,0.25);
  background: #fff;
}

.contact-section__form button {
  padding: 16px 32px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(95deg, #FF8E6B, #FFB347);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.35s ease;
}

.contact-section__form button:hover {
  background: linear-gradient(95deg, #FF7A52, #FFA36A);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,142,107,0.25);
}


.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, #fef9f3, #fff8e0);
  padding: 120px 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.trusted-title {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.5px;
}

.trusted-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

/* Cards Grid: 3 в ряд на великих екранах */
.trusted-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Individual Card */
.trusted-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusted-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

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

.trusted-quote::before,
.trusted-quote::after {
  content: '“';
  font-size: 2rem;
  color: rgba(44, 62, 80, 0.2);
  position: absolute;
}

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

/* Author */
.trusted-author {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 1024px) {
  .trusted-cards { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .trusted-title { font-size: 2.4rem; }
  .trusted-subtitle { font-size: 1rem; }
}

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

@media (max-width: 480px) {
  .trusted-card { padding: 30px 20px; }
  .trusted-title { font-size: 1.8rem; }
  .trusted-subtitle { font-size: 0.9rem; }
  .trusted-quote { font-size: 0.95rem; }
  .trusted-author { font-size: 0.9rem; }
}


.why-us {
  background: linear-gradient(135deg, #fbfaf8 0%, #f6f4f1 100%);
  padding: 120px 20px;
  text-align: center;
  color: #333;
  font-family: "Inter", "Poppins", sans-serif;
}

.why-us__title {
  font-size: 2.7rem;
  color: #2a2a2a;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.why-us__subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

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

/* CARD */
.why-us__item {
  background: #ffffff;
  padding: 45px 30px;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid #ececec;
  position: relative;
}

.why-us__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.15);
}

.why-us__icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.why-us__item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 15px;
}

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

/* GRID: 4 картки в один ряд на великих екранах */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* чотири колонки */
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

/* RESPONSIVE: 2 колонки на середніх, 1 колонка на маленьких */
@media (max-width: 1024px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .why-us__title { font-size: 2.4rem; }
  .why-us__subtitle { font-size: 1.05rem; }
}

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


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

.projects-gallery h2 {
  font-size: 2.6rem;
  color: #ffb163;
  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, #f6f5f3, #eaeaea);
  padding: 120px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #5a5a5a;
}

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

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

.step {
  background: linear-gradient(145deg, #ffffff, #f0f4f7);
  border-radius: 24px;
  padding: 45px 30px;
  box-shadow: 0 10px 25px rgba(160,160,160,0.2);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(160,160,160,0.3);
  background: linear-gradient(145deg, #f9f9f9, #e6eef3);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #c8d8e4;
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.15;
}

.step h3 {
  color: #d16600;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.step p {
  color: #6b6b6b;
  line-height: 1.7;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .project-process h2 { font-size: 2.4rem; }
  .step h3 { font-size: 1.3rem; }
  .step p { font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .process-steps { gap: 30px; }
  .project-process h2 { font-size: 2rem; }
}

@media (max-width: 500px) {
  .step { padding: 35px 20px; }
  .step h3 { font-size: 1.1rem; }
  .step p { font-size: 0.9rem; }
}


/* SERVICES LIST */
.services-list {
  background: #f6f8fa;
  padding: 120px 20px;
  text-align: center;
  color: #4a4a4a;
  font-family: 'Poppins', sans-serif;
}

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

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

.service-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.service-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #5a6b82;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b6b6b;
}

/* SERVICES PROCESS */
.services-process {
  background: #eaf1f5;
  padding: 120px 20px;
  text-align: center;
  color: #4a4a4a;
}

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

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

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

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

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #c1d1e0;
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.15;
}

.step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #5a6b82;
}

.step p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b6b6b;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 картки в ряд */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr); /* 2 картки на середніх екранах */
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr; /* 1 картка на мобільних */
    gap: 25px;
  }
}



.services-cta {
  background: #ffb163;
  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: #000000;
  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-history-premium {
  background: #fdfcfb; /* світлий пастельний фон */
  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: #d16600; /* пастельний синьо-сірий */
}

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

.history-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(187, 222, 214, 0.3); /* ніжний пастельний колір */
  transform: translateY(-50%);
  z-index: 1;
}

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

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

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

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

.about-values {
  background: #f9fafc; /* пастельний фон */
  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: #a8d5ba; /* пастельний зелений */
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 елементи в рядок */
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background: linear-gradient(180deg, #fdfdfd 0%, #f6f8f7 100%);
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

@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-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: #d16600;
}

.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 #ffb163;
  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: #ffb163;
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

.cookies-btn {
  background: #ffb163;
  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;
  }
}