:root {
  --White: #ffffff;
  --Black: #000000;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Container */
.header__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  height: 125px;
  box-sizing: border-box;
}

/* Logo Column */
.header__logo {
  display: flex;
  align-items: center;
}

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

.header__logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

/* Navigation Column */
.header__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
  align-items: center;
}

.header__menu li {
  position: relative;
}

.header__menu a {
  color: #000;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}

.header__menu a:hover {
  color: #000;
  text-decoration: underline;
}

/* Dropdown Menus */
.header__menu .menu-item-has-children {
  position: relative;
}

.header__menu .menu-item-has-children > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.header__menu .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.header__menu .sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #000;
  padding: 30px 20px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header__menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header__menu .sub-menu li {
  padding: 0;
}

.header__menu .sub-menu a {
  padding: 10px 20px;
  display: block;
  color: #fff;
}

.header__menu .sub-menu a:hover {
  text-decoration: underline;
}

/* Actions Column */
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

/* Contact Button */
.header__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--White);
  font-family: "Asap", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.header__contact-btn:hover {
}

.header__contact-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Language Switcher */
.header__language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--White);
}

.header__language-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.header__language-content {
  font-family: "Asap", sans-serif;
  font-size: 14px;
  color: var(--White);
}

.header__language-content .gt_switcher-popup > span {
  color: var(--White);
}

/* Mobile Toggle */
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.header__mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__mobile-toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.header__mobile-toggle--open span:nth-child(2) {
  opacity: 0;
}

.header__mobile-toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.header__mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: var(--Black);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.header__mobile-menu--open {
  transform: translateX(0);
}

.header__mobile-content {
  padding: 30px 20px;
}

.header__mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__mobile-nav li {
  margin-bottom: 20px;
}

.header__mobile-nav a {
  color: var(--White);
  font-family: "Asap", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__mobile-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header__mobile-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--White);
  text-decoration: none;
  font-family: "Asap", sans-serif;
  font-weight: 600;
}

.header__mobile-contact img {
  width: 20px;
  height: 20px;
}

.header__mobile-language {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--White);
  font-family: "Asap", sans-serif;
}

.gt_switcher-popup > span {
  color: var(--White);
}

.header__mobile-language img {
  width: 20px;
  height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header__navigation {
    display: none;
  }

  .header__contact-btn,
  .header__language-switcher {
    display: none;
  }

  .header__mobile-toggle {
    display: flex;
  }

  .header__container {
    grid-template-columns: 1fr auto;
    width: 95%;
    padding: 12px 0;
    height: 80px;
  }

  .header__logo img {
    height: 50px;
  }

  .header__mobile-menu {
    top: 80px;
    height: calc(100vh - 80px);
  }

  .header__mobile-content {
    padding: 40px 30px;
  }

  .header__mobile-nav {
    margin-bottom: 30px;
  }

  .header__mobile-nav li {
    margin-bottom: 8px;
  }

  .header__mobile-nav a {
    font-size: 20px;
    font-weight: 600;
    padding: 20px 25px;
    border-radius: 10px;
    border-bottom: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
  }

  .header__mobile-nav a:hover,
  .header__mobile-nav a:active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
  }

  .header__mobile-actions {
    margin-top: 40px;
    gap: 20px;
  }

  .header__mobile-contact {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
  }

  .header__mobile-contact:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .header__mobile-contact img {
    width: 24px;
    height: 24px;
  }

  .header__mobile-language {
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 16px;
  }

  .header__mobile-language img {
    width: 24px;
    height: 24px;
  }
}

/* Large Tablet Specific */
@media (max-width: 1024px) and (min-width: 769px) {
  .header__container {
    height: 75px;
    padding: 15px 0;
  }

  .header__logo img {
    height: 48px;
  }

  .header__mobile-toggle {
    padding: 8px;
  }

  .header__mobile-toggle span {
    width: 26px;
    height: 3px;
  }

  .header__mobile-menu {
    top: 75px;
    height: calc(100vh - 75px);
  }

  .header__mobile-nav a {
    font-size: 22px;
    padding: 22px 30px;
  }

  .header__mobile-contact {
    font-size: 19px;
    padding: 22px 30px;
  }

  .header__mobile-language {
    font-size: 17px;
    padding: 20px 30px;
  }
}

@media (max-width: 768px) {
  .header__container {
    padding: 12px 0;
    height: 70px;
    width: 95%;
  }

  .header__logo img {
    height: 45px;
  }

  .header__mobile-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .header__mobile-content {
    padding: 40px 25px;
  }

  .header__mobile-nav {
    margin-bottom: 30px;
  }

  .header__mobile-nav li {
    margin-bottom: 5px;
  }

  .header__mobile-nav a {
    font-size: 18px;
    font-weight: 600;
    padding: 18px 20px;
    border-radius: 8px;
    border-bottom: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 8px;
  }

  .header__mobile-nav a:hover,
  .header__mobile-nav a:active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
  }

  .header__mobile-actions {
    margin-top: 40px;
    gap: 15px;
  }

  .header__mobile-contact {
    padding: 18px 20px;
    background: var(--Grn, #007668);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
  }

  .header__mobile-contact:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .header__mobile-contact img {
    width: 22px;
    height: 22px;
  }

  .header__mobile-language {
    padding: 15px 20px;
    background: var(--Grn, #007668);
    border-radius: 10px;
    font-size: 14px;
  }

  .header__mobile-language img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .header__container {
    padding: 10px 0;
    height: 60px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .header__logo img {
    height: 40px;
  }

  .header__mobile-toggle {
    padding: 6px;
  }

  .header__mobile-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .header__mobile-menu {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .header__mobile-content {
    padding: 30px 20px;
  }

  .header__mobile-nav a {
    font-size: 17px;
    padding: 16px 18px;
  }

  .header__mobile-contact {
    padding: 16px 18px;
    font-size: 15px;
  }

  .header__mobile-contact img {
    width: 20px;
    height: 20px;
  }

  .header__mobile-language {
    padding: 14px 18px;
    font-size: 13px;
  }

  .header__mobile-language img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 360px) {
  .header__container {
    height: 55px;
    padding: 8px 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .header__logo img {
    height: 35px;
  }

  .header__mobile-toggle {
    padding: 4px;
  }

  .header__mobile-toggle span {
    width: 20px;
    height: 2px;
  }

  .header__mobile-menu {
    top: 55px;
    height: calc(100vh - 55px);
  }

  .header__mobile-content {
    padding: 25px 15px;
  }

  .header__mobile-nav a {
    font-size: 16px;
    padding: 14px 16px;
  }

  .header__mobile-contact {
    padding: 14px 16px;
    font-size: 14px;
  }

  .header__mobile-contact img {
    width: 18px;
    height: 18px;
  }

  .header__mobile-language {
    padding: 12px 16px;
    font-size: 12px;
  }

  .header__mobile-language img {
    width: 18px;
    height: 18px;
  }
}

/* Enhanced Mobile Menu Animation */
@media (max-width: 768px) {
  .header__mobile-menu {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .header__mobile-nav li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.3s ease forwards;
  }

  .header__mobile-nav li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .header__mobile-nav li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .header__mobile-nav li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .header__mobile-nav li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .header__mobile-nav li:nth-child(5) {
    animation-delay: 0.5s;
  }
  .header__mobile-nav li:nth-child(6) {
    animation-delay: 0.6s;
  }

  .header__mobile-actions > * {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.3s ease forwards 0.7s;
  }

  .header__mobile-actions > *:last-child {
    animation-delay: 0.8s;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Improved Header Scrolled State for Mobile */
@media (max-width: 768px) {
  .header.header--scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  }
}

/* Footer Styles */
.footer {
  background: var(--Black);
  color: var(--White);
  padding: 55px 0;
}

.footer__container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Footer Logo Column */
.footer__logo-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

/* Footer Content Column */
.footer__content-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footer__contact-column,
.footer__social-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding-top: 40px;
}

/* Footer Titles */
.footer__title {
  color: #fff;
  font-family: "Helvetica Neue";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}

/* Footer Contact Info */
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 1px;
  color: #fff;
  font-family: "Helvetica Neue";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__contact-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Footer Social Media */
.footer__social-media {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer__social-link {
  display: flex;
  gap: 10px;
  transition: all 0.3s ease;
  color: #fff;
  font-family: "Helvetica Neue";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}

.footer__social-link:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.footer__bottom-container {
  max-width: 1360px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright,
.footer__designed-by {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Asap", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.footer__designed-by a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__designed-by a:hover {
  color: var(--White);
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 2fr;
    gap: 40px;
  }

  .footer__content-column {
    gap: 40px;
  }

  .footer__container {
    width: 95%;
  }

  .footer__bottom-container {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__content-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__main {
    margin-bottom: 40px;
  }

  .footer__bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer__social-media {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 0;
  }

  .footer__main {
    gap: 25px;
    text-align: center;
  }

  .footer__logo {
    margin: auto;
  }

  .footer__content-column {
    gap: 25px;
    text-align: center;
  }

  .footer__contact-item {
    justify-content: center;
  }

  .footer__title {
    font-size: 16px;
  }

  .footer__contact-link {
    font-size: 13px;
    text-align: center;
  }

  .footer__social-link {
    font-size: 13px;
    justify-content: center;
  }
}
