@import url("reset.css");

@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");

/* ************COMMON************ */

.logo {
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 3rem);
}

/* Color Variables */
:root {
  --color-primary: #1E3D59; /* Deep navy blue - representing professionalism and strength */
  --color-secondary: #FF6B35; /* Warm orange - representing welding sparks */
  --color-accent: #FFC917; /* Bright yellow - representing welding flame */
  --color-dark: #2C3E50; /* Dark blue-gray - representing metal */
  --color-light: #F5F5F5; /* Light gray - for backgrounds */
  --color-gray: #707070; /* Medium gray - for text and borders */
  --color-metal: #A7A7A7; /* Metallic gray - for accents */
  --color-white: #FFFFFF;
}

html,
body {
  height: 100%; /* Ensure html and body take full viewport height */
}

body {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: var(--color-dark);
  background-color: var(--color-white);
}

[class*="__container"] {
  max-width: min(90rem, 95%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
  width: 100%;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: clamp(0.5rem, 2vw, 1.25rem) clamp(1rem, 3vw, 2.5rem);
  border-radius: 30px;
  transition: all 0.3s;
  color: var(--color-white);
  background-color: var(--color-primary);
}

.button:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 clamp(1rem, 3vw, 3rem);
}

.header__logo {
  max-height: none;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 130px;
  height: auto;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.menu__link {
  font-weight: 600;
  position: relative;
  color: var(--color-dark);
}

.menu__link:hover {
  color: var(--color-secondary);
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  color: var(--color-primary);
}

.actions-header__button:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.language-dropdown {
  position: relative;
  /* To ensure it behaves as a flex item, not inline-block */
  /* display: inline-block; */
}

.language-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px; /* Using the common min-width */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  padding: 8px 0;
}

.language-content a {
  color: #303a4d;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px; /* Using the common gap */
  font-weight: 500;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.language-content a:hover {
  background-color: #e1e4eb;
}

.language-dropdown:hover .language-content {
  display: block;
}

.language-dropdown:hover .actions-header__button {
  background-color: #e1e4eb;
  border-color: #303a4d;
}

.header-flags {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}

.language-emoji {
  font-size: 20px;
}

/* ****************PAGES**************** */
.page__main {
  /* Removed padding-top and padding-bottom to allow for true vertical centering of content */
}

/* *****************HOME**************** */

.main {
  /* Removed background image to allow video to show */
  /* background: url("../img/home/background_placeholder.png") center / cover no-repeat; */
  height: 100vh; /* Explicitly set height to viewport height */
  position: relative; /* Added to correctly position absolute children */
  overflow: hidden; /* Ensure content doesn't spill out */
}

.main__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.main__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(30, 61, 89, 0.8), rgba(30, 61, 89, 0.8));
  z-index: 1;
}

.main__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* Removed fixed padding-top and padding-bottom for true vertical centering */
  height: 100%; /* Make it take full height of its parent (.main) */
  width: 100%; /* Make it take full width of its parent */
  max-width: min(90rem, 95%);
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.main__caption {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--color-white);
  text-align: center;
  width: 100%;
}

.main__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  text-align: center;
  width: 100%;
}

.main__text {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 600px;
  color: var(--color-white);
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(3rem, 5vw, 5rem);
  border-radius: 30px;
  transition: all 0.3s;
  color: var(--color-white);
  background-color: var(--color-secondary);
  letter-spacing: 0.02em;
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  line-height: 110%;
}

.main__button:hover {
  background-color: var(--color-primary);
}

.outro_home {
  background: url("../img/home/hero_placeholder.jpg") center / cover no-repeat;
}

/* ************ABOUT**************** */

.main_about {
  /* Removed background image to allow video to show */
  /* background: url("../img/about/background_placeholder.png") center / cover no-repeat; */
  position: relative;
  overflow: hidden;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 5rem);
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  max-width: min(90rem, 95%);
}

.about__image {
  position: relative;
  max-width: min(45rem, 100%);
  height: 614px;
  aspect-ratio: 0.9;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: min(40rem, 100%);
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.outro_about {
  background: url("../img/about/hero_placeholder.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_services {
  /* Removed background image to allow video to show */
  /* background: url("../img/services/background_placeholder.png") center / cover no-repeat; */
  position: relative;
  overflow: hidden;
}

.services {
  background-color: var(--color-light);
}

.services__container {
  max-width: min(90rem, 95%);
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.services__title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.services__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.item-services {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 100%;
  transition: transform 0.3s ease;
}

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

.item-services__image {
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  width: 100%;
  max-width: min(25rem, 100%);
  height: auto;
  aspect-ratio: 0.857;
}

.item-services__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.item-services__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.item-services__text {
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.item-services__button {
  padding: 0.5rem 1.5rem;
  font-size: 0.95rem;
}

.item-services__button:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.outro_services {
  background: url("../img/services/hero_placeholder.jpg") center / cover no-repeat;
}

/* ************TESTIMONIAL**************** */

.testimonial {
  background-color: #F0F2F5; /* Light metallic gray that complements the welding theme */
  width: 100%;
  position: relative;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(240, 242, 245, 0.97), rgba(240, 242, 245, 0.97)),
              url("../img/home/hero_placeholder.jpg") center / cover no-repeat;
  z-index: 0;
}

.testimonial__container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: clamp(3rem, 8vw, 10rem) 1rem;
  max-width: min(90rem, 95%);
  margin: 0 auto;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  max-width: min(60rem, 90%);
  margin: 0 auto clamp(2rem, 6vw, 4rem);
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

/* ****************OUTRO**************** */

.outro {
  background: linear-gradient(rgba(30, 61, 89, 0.9), rgba(30, 61, 89, 0.9)), 
              url("../img/home/hero_placeholder.jpg") center / cover no-repeat;
  color: var(--color-white);
  width: 100%;
}

.outro__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: min(90rem, 95%);
  margin: 0 auto;
}

.outro__title {
  margin-bottom: 1.25rem;
}

.outro__text {
  max-width: min(33.625rem, 90%);
  line-height: 150%;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.outro__button {
  padding: 1.25rem 3rem;
  background-color: var(--color-secondary);
}

.outro__button:hover {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

/* ****************FOOTER**************** */

.footer {
  line-height: 150%;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.footer__container {
  max-width: min(90rem, 95%);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  justify-self: start;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

.footer__social-link img {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
}

.footer__logo {
  justify-self: center;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.footer__copyright {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-white);
  justify-self: end;
  font-size: 0.9rem;
}

.footer__policy {
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

.footer__policy:hover {
  color: var(--color-secondary);
}

.footer__policy:hover::after {
  width: 62%;
}

.footer__logo {
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

.footer__logo:hover {
  color: var(--color-secondary);
}

.footer__logo:hover::after {
  width: 100%;
}

.footer__copyright {
  color: var(--color-white);
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

.footer__copyright:hover {
  color: var(--color-secondary);
}

.footer__copyright:hover::after {
  width: 100%;
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: clamp(10rem, 20vw, 19rem);
}

.main_pages {
  min-height: 676px !important;
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: clamp(4rem, 10vw, 8rem);
  max-width: min(90rem, 95%);
  margin: 0 auto;
}

.services-page__item {
  margin-bottom: clamp(4rem, 10vw, 8rem);
}

.services-page__item:not(:last-child) {
  padding-bottom: clamp(4rem, 10vw, 8rem);
  margin-bottom: clamp(4rem, 10vw, 8rem);
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.services-page__column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.services-page__item:nth-child(even) .services-page__column {
  direction: rtl;
}

.services-page__item:nth-child(even) .services-page__content {
  direction: ltr;
}

.services-page__title {
  margin-bottom: 24px;
  text-align: center;
}

.services-page__text {
  margin-bottom: 0;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__img {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.services-page__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .services-page__column {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }
  
  .services-page__item:nth-child(even) .services-page__column {
    direction: ltr;
  }
  
  .services-page__img {
    max-width: 400px;
  }
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../img/contact/background_placeholder.png") center / cover no-repeat;
}

.contact {
  padding-top: clamp(5rem, 8vw, 7rem);
  background-color: var(--color-light);
}

.contact__container {
  max-width: min(90rem, 95%);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 8rem) 1rem;
  display: grid; /* Re-enable grid for two columns */
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: clamp(2rem, 6vw, 5rem); /* Gap between columns */
}

.contact__contacts,
.contact__info {
  text-align: center; /* Keep text alignment for both */
}

.contact__contacts {
  background: var(--color-light);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact__info {
  background: none; /* Remove background */
  padding: 0; /* Remove padding */
  border-radius: 0; /* Remove border-radius */
  box-shadow: none; /* Remove box-shadow */
}

.contact__title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2.5rem; /* Default margin for titles */
  color: var(--color-primary);
}

.contact__contacts .contact__title {
  margin-bottom: 2.5rem; /* Specific margin for 'Reach Out to Us' title */
}

.contact__info .contact__title {
  margin-bottom: 1rem; /* Shorter margin for Get in Touch title */
}

.connect-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.connect-contact__item {
  display: flex;
  align-items: center; /* Vertically align items */
  gap: 1rem;
  padding: 0.8rem;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.connect-contact__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.connect-contact__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.connect-contact__icon svg {
  width: 100%;
  height: 100%;
}

.connect-contact__content {
  text-align: left;
  flex-grow: 1;
}

.connect-contact__type {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.connect-contact__label {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-dark);
}

.connect-contact__label a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.connect-contact__label a:hover {
  color: var(--color-secondary);
}

@media (max-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2rem;
    padding: clamp(2rem, 6vw, 6rem) 1rem;
  }

  .contact__contacts {
    padding: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem; /* Adjust margin for mobile */
  }

  .contact__info {
    padding: 0;
    background: none;
    box-shadow: none;
  }

  .contact__title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
  }

  .contact__contacts .contact__title {
    margin-bottom: 2rem;
  }

  .contact__info .contact__title {
    margin-top: clamp(1.5rem, 4vw, 4rem); /* Add top margin for mobile spacing */
    margin-bottom: 1rem;
  }

  .connect-contact__item {
    padding: 0.6rem;
  }

  .connect-contact__type {
    font-size: 1rem;
  }

  .connect-contact__label {
    font-size: 0.9rem;
  }
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid var(--color-metal);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.reviews__column:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

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

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid var(--color-metal);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.pricing__column:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: var(--color-white);
  padding: 20px 82px;
  background-color: var(--color-primary);
  border-radius: 64px;
}

.item-pricing__button:hover {
  background-color: var(--color-secondary);
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 1200px) {
  .services-page__container {
    padding: 0 1rem;
  }

  .services-page__item:not(:last-child) {
    margin-bottom: 3rem;
  }

  .services-page__column {
    gap: 2rem;
  }

  .services-page__img {
    max-width: 100%;
  }

  .main__container {
    padding: 0 1rem;
  }

  .about__container {
    padding: 0 1rem;
  }
}

@media (max-width: 992px) {
  .services__row {
    flex-direction: column;
    gap: 2rem;
  }

  .about__container {
    flex-direction: column;
    gap: 2rem;
  }

  .about__image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .page__main {
    min-height: 70vh;
  }

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

@media (max-width: 768px) {
  .header {
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
  }
  
  .header__container {
    padding: 0.5rem 1rem;
    min-height: 60px;
  }
  
  .header__logo {
    max-width: 100px;
  }

  .header__logo img {
    width: 100%;
    height: auto;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    transition: all 0.3s ease;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu span {
    top: 8px;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .menu-open .icon-menu span {
    transform: scale(0);
  }

  .menu-open .icon-menu::before {
    transform: rotate(45deg);
    top: 8px;
  }

  .menu-open .icon-menu::after {
    transform: rotate(-45deg);
    bottom: 8px;
  }

  .menu__body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 80px 20px 30px;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .menu__body.menu-open {
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .menu__link {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    display: block;
    width: 100%;
    text-align: center;
  }

  .language-dropdown {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
  }

  .actions-header__button {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .language-content {
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
  }

  .page__main {
    padding-top: 60px;
  }

  .main__container {
    /* Removed specific padding-top and padding-bottom here as well */
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .main__caption {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    margin-bottom: 0.75rem;
  }

  .main__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
  }

  .main__text {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .main__button {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    padding: clamp(1rem, 2vw, 1.5rem) clamp(2rem, 4vw, 3rem);
  }
}

@media (max-width: 480px) {
  .header__logo {
    max-width: 80px;
  }

  .menu__link {
    font-size: 1.1rem;
  }

  .actions-header__button {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }

  .page__main {
    padding-top: 50px;
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Improve touch targets */
@media (max-width: 768px) {
  .menu__link,
  .actions-header__button {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Improve form elements on mobile */
@media (max-width: 768px) {
  .form-input,
  .form-textarea {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 12px;
    min-height: 44px;
  }

  .form-submit {
    min-height: 44px;
    font-size: 1.1rem;
  }

  .checkbox-label {
    font-size: 0.9rem;
  }
}

/* Improve video background on mobile */
@media (max-width: 768px) {
  .main__video {
    height: 100vh;
    object-position: center;
  }

  .main__overlay {
    background: linear-gradient(rgba(30, 61, 89, 0.9), rgba(30, 61, 89, 0.9));
  }
}

/* Improve image loading on mobile */
@media (max-width: 768px) {
  img {
    loading: lazy;
  }
}

/* Add ultra-wide screen support */
@media (min-width: 1600px) {
  .services__row {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  }

  .about__container {
    gap: 8rem;
  }

  .main__container {
    padding-top: max(22rem, 25vh);
  }

  .connect-contact {
    gap: 3rem;
  }

  iframe {
    height: 60vh;
    max-height: 800px;
  }
}

@media (min-width: 2000px) {
  .services__row {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
  }

  .main__container {
    padding-top: max(25rem, 30vh);
  }

  body {
    font-size: clamp(1rem, 1.2vw, 1.4rem);
  }
}

/* Values section styles */
.values {
  background-color: var(--color-light);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.values__container {
  max-width: min(90rem, 95%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
}

.values__title {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  color: var(--color-primary);
}

.values__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.values__column {
  background: var(--color-white);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.values__subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.values__text {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.6;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .values__row {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Add this to your css/style.css file */
.logo-image {
    width: 130px; /* Set the width to 130px or your desired size */
    height: auto; /* Maintain aspect ratio */
}