* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Inter, sans-serif;
  scroll-behavior: smooth;
}

:root {
  --primary-color: #d2aa58;
  --font-color: #5c5850;
  --bg-color: linear-gradient(
      180deg,
      rgba(255, 255, 255, 1),
      rgba(236.22, 220.13, 198.66, 0.64) 61%,
      rgba(213, 177, 129, 0.2) 100%
    )
    no-repeat;
  --secondary-bg: #ffffff;
}

[data-theme='dark'] {
  --primary-color: #d2aa58;
  --font-color: #958f84;
  --bg-color: linear-gradient(180deg, rgba(60.07, 56.4, 49.68, 1), rgba(74, 68, 57, 1) 100%)
    no-repeat;
  --secondary-bg: #251f14;
}

body {
  background: var(--bg-color);
  color: var(--font-color);
}

img {
  vertical-align: middle;
}

ul,
li {
  text-decoration: none;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: var(--font-color);
  transition: all 0.3s ease;
  display: block;
}

a:active {
  transform: scale(0.99);
}

#services,
#about {
  scroll-margin-top: 160px;
}

.container {
  margin: 0 auto;
  max-width: 1440px;
}

.header-wrapper {
  border-bottom: 1px solid var(--font-color);
}

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

.header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-title-text p {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0%;
}

.header-title-text span {
  font-size: 12px;
  font-size: 12px;
  font-weight: 400;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.header-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.header-nav a:hover {
  color: var(--primary-color);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-switch a {
  font-weight: 600;
}
.lang-switch .active {
  color: var(--primary-color);
}
.lang-floating {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
}
.lang-toggle {
  background: var(--secondary-bg);
  border: 1px solid var(--font-color);
  border-radius: 20px;
  padding: 8px 12px;
  color: var(--font-color);
  cursor: pointer;
  font-weight: 700;
  min-width: 64px;
}
.lang-menu {
  position: absolute;
  right: 0;
  bottom: 46px;
  background: var(--secondary-bg);
  border: 1px solid var(--font-color);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 160px;
  overflow: hidden;
}
.lang-floating.open .lang-menu {
  display: block;
}
.lang-menu a {
  padding: 10px 12px;
  display: block;
}
.lang-menu a:hover {
  background: rgba(210, 170, 88, 0.1);
}
.lang-menu a.active {
  color: var(--primary-color);
  font-weight: 700;
}
@media (max-width: 576px) {
  .lang-toggle {
    padding: 8px 10px;
    border-radius: 16px;
    min-width: 56px;
  }
  .lang-menu {
    min-width: 140px;
  }
}

.theme-toggle {
  display: flex;
  align-items: center;
}

.theme-btn {
  background: none;
  border: 1px solid var(--font-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  color: var(--font-color);
}

.theme-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: rotate(15deg);
}

.sun-icon,
.moon-icon {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.sun-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.moon-icon {
  opacity: 0;
  transform: scale(0.8) rotate(-90deg);
}

[data-theme='dark'] .sun-icon {
  opacity: 0;
  transform: scale(0.8) rotate(90deg);
}

[data-theme='dark'] .moon-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.hero {
  margin-top: 30px;
  padding: 82px 40px;
  border-radius: 40px;
  background-color: var(--secondary-bg);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-img h3 {
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
}

.hero-info {
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-label {
  display: inline-block;
  border-radius: 20px;
  background: rgba(82, 76, 65, 0.5);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 300;
}

.hero-info h1 {
  margin-top: 10px;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: var(--primary-color);
}

.hero-info h1 p {
  font-family: Inter;
  font-size: 24px;
  line-height: 29px;
}

.hero-descreiption {
  margin-top: 10px;
  text-align: center;
}

.hero-btns {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-btns a {
  padding: 10px;
  border-radius: 10px;
  background: rgba(210, 170, 88, 1);
  min-width: 198px;
  color: var(--secondary-bg);
  font-weight: 600;
  line-height: 19px;
}

.hero-btns a:hover {
  opacity: 0.8;
}

.services {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  padding: 30px;
  border-radius: 20px;
  background-color: var(--secondary-bg);
}

.services-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 629px;
}

.services-info h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.services-info p {
  margin-top: 20px;
}

.summary {
  margin-top: 14px;
  font-size: 18px;
  line-height: 22px;
}

.services-link {
  display: inline-block;
}

.services-btn {
  margin-top: 10px;
  color: var(--secondary-bg);
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
  background: var(--primary-color);
  text-align: center;
}

.services-btn:hover {
  opacity: 0.8;
}

.services-list-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-list-wrapper li {
  position: relative;
  padding-left: 24px;
}

.services-list-wrapper li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: rgba(210, 170, 88, 1);
}

.team {
  margin-top: 40px;
}

.team h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  color: var(--primary-color);
}

.team-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.team-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-info {
  margin-top: 14px;
}

.team-info h3 {
  font-weight: 700;
  font-size: 16px;
}

.about {
  margin-top: 40px;
  padding: 30px;
  border-radius: 20px;
  background: var(--secondary-bg);
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 782px;
}

.about-info h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 39px;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list li {
  position: relative;
  padding-left: 24px;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: rgba(210, 170, 88, 1);
}

.about-map {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.about-map iframe {
  width: 100%;
  height: 100%;
}

.contact {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-label {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.contact h2 {
  margin-top: 10px;
  font-family: Inter;
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  color: var(--primary-color);
}

.contact-btns-wrapper h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.contact-btns {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.contact-btns a {
  padding: 21px;
  border-radius: 20px;
  background: var(--primary-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: var(--secondary-bg);
  flex: 1;
}

.contact-btns a:hover {
  opacity: 0.8;
}

.footer {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary-bg);
  border-radius: 20px;
}

.footer-info h3 {
  font-weight: 700;
  line-height: 19px;
}

.footer-info p {
  display: flex;
  gap: 6px;
  font-size: 14px;
  line-height: 17px;
  opacity: 0.5;
}

.footer-copy {
  opacity: 0.4;
  font-weight: 300;
}

.mobile {
  display: none;
}

@media (max-width: 992px) {
  .container {
    margin-left: 10px;
    margin-right: 10px;
  }
  .header-nav ul {
    gap: 16px;
    flex-wrap: wrap;
  }
  .header-title-text p {
    font-size: 14px;
  }
  .header-title-text span {
    font-size: 11px;
  }
  .hero {
    padding: 60px 20px;
    flex-direction: column;
    gap: 20px;
  }
  .hero-info h1 {
    font-size: 30px;
    line-height: 36px;
  }
  .hero-info h1 p {
    font-size: 20px;
    line-height: 26px;
  }
  .hero-img {
    text-align: center;
  }
  .hero-img img {
    max-width: 220px;
    width: 100%;
    height: auto;
  }
  .services {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .services-info-wrapper {
    max-width: none;
  }
  .team h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .team-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
  .about {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .about-info h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .about-map {
    height: 400px;
  }
  .contact h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .contact-btns a {
    font-size: 20px;
    padding: 16px;
  }
  .footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-info p {
    margin-top: 10px;
    justify-content: center;
    flex-direction: column;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: flex;
  }
}

@media (max-width: 576px) {
  .header {
    flex-direction: column;
    gap: 10px;
  }
  .header-title {
    flex-direction: column;
    text-align: center;
  }
  .header-nav {
    gap: 10px;
    flex-direction: column;
  }
  .header-nav ul {
    gap: 12px;
  }
  .hero {
    padding: 40px 16px;
  }
  .hero-label {
    font-size: 11px;
    padding: 5px 8px;
  }
  .hero-info h1 {
    font-size: 24px;
    line-height: 30px;
  }
  .hero-info h1 p {
    font-size: 18px;
    line-height: 24px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-btns a {
    width: 100%;
    min-width: 0;
  }
  .services {
    padding: 16px;
    gap: 20px;
  }
  .services-btn {
    width: 100%;
  }
  .team-wrapper {
    gap: 14px;
  }
  .about-map {
    height: 300px;
  }
  .contact-btns {
    flex-direction: column;
    gap: 14px;
  }
  .contact-btns a {
    font-size: 16px;
    width: 100%;
    padding: 16px 56px;
  }
  .footer {
    padding: 12px 16px;
  }
}
