@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");

:root {
  --headingstext: "Russo One", sans-serif;
  --bodytext: "Archivo", sans-serif;

  --buttonscolor: linear-gradient(135deg, #059669, #047857);
  --redmaincolor: #e30613;
  --blacktextcolor: #1a1a1a;
  --grayaccentcolor: #f5f5f5;
}

html {
  box-sizing: border-box;
  /* scroll-behavior: smooth; */
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

ul,
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1 {
  font-family: var(--headingstext);
  letter-spacing: 0.03em; /* adjust this value as needed */
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--headingstext);
  letter-spacing: 0.03em; /* adjust this value as needed */
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

button {
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* END GENERAL PAGE STYLING */
/* START STYLING */

.container {
  padding: 0 20px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  padding: 0px;
  margin: 0px;
  font-family: var(--bodytext);
  color: var(--blacktextcolor);
  font-size: 16px;
  /* line-height: 18px; */
}

header {
  /* background-color: var(--grayaccentcolor) */
}

.header__inner {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo__link-img {
  width: 160px;
  height: 100%;
}

.hamburger {
  display: none;
}

.contact-me {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-bar ul {
  display: flex;
}

.nav-bar li a {
  display: block;
  color: #fff;
  padding: 10px 12px;
  border-radius: 3px;
  margin: 0 5px;
  font-family: var(--headingstext);
  border: 1px solid transparent;
  color: var(--blacktextcolor);
  text-decoration: none;

  font-size: 16px;
  box-shadow: inset 0 0 0 0 var(--redmaincolor);
  transition: color 0.3s ease-in-out, box-shadow 0.5s ease-in-out;
}

.nav-bar ul li a:hover {
  color: #fff;
  box-shadow: inset 200px 0 0 0 var(--redmaincolor);
}

.contact-me {
  display: flex;
  align-items: center;
}

.contact-me-button {
  padding: 10px 12px;
  border-radius: 3px;
  transition: 0.2s;
  margin: 0 5px;
  font-family: var(--bodytext);
  border: 1px solid transparent;
  color: var(--grayaccentcolor);
  background: var(--buttonscolor);
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}

.contact-me-button:hover {
  transform: translateY(-3px);
  background-color: #fff;
  /* border: 1px solid var(--blacktextcolor); */
}

.contact-me-icon {
  width: 44px;
  height: 44px;
}

.contact-me-button-navbar {
  display: none;
}

.contact-me-socialicons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  gap: 10px;
}

.socialicon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.socialicon:hover {
  transform: scale(1.2); /* ușor efect de mărire */
}

.contact-me-socialicons-navbar {
  display: none;
}

.hero__textboxbuttons-wrapper {
  display: none;
}

@media (max-width: 950px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 20;
  }

  .contact-me {
    display: none;
  }

  .contact-me-button-navbar {
    display: block;
    margin-top: 30px;
  }

  .contact-me-socialicons-navbar {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
  }

  .hamburger .line {
    height: 4px;
    width: 100%;
    background-color: var(--redmaincolor);
    border-radius: 2px;
    transition: all 0.4s ease;
    transform-origin: center;
  }

  .nav-bar {
    position: absolute;
    height: 0;
    top: 40px;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    transition: 0.2s;
    z-index: 10;
    overflow: hidden;
  }

  .nav-bar.active {
    height: 450px;
    /* background-color: var(--redmaincolor); */
  }

  .hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(8.2px, -8.2px);
  }

  .nav-bar ul {
    display: block;
    width: fit-content;
    margin: 80px auto 0 auto;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
  }

  .nav-bar.active ul {
    opacity: 1;
  }

  .nav-bar ul li a {
    margin-bottom: 10px;
  }
}

@media (max-width: 1200px) and (min-width: 951px) {
  .navbar a {
    font-size: 15px;
    margin: 0 10px;
  }

  .contact-me-button {
    padding: 8px 16px;
    font-size: 16px;
  }

  .socialicon {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 640px) {
  .logo__link-img {
    margin-left: 24px;
  }
  .container {
    padding: 0 30px;
  }
  .header {
    min-height: 100px;
  }
  .header__inner {
    min-height: 100px;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
  .logo__link-img {
    margin-left: 0px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1450px;
  }

  .nav-bar li a {
    font-size: 17px;
  }
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

.video-overlay {
  /* dark background on video */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero__inner {
  min-height: 250px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

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

  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6; /* optional: darkens video for readability */
}

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

  font-family: var(--headingstext);
  color: #fff;
  font-size: 24px;
  line-height: 26px;
  text-transform: uppercase;
  padding: 22px 26px;
  width: 100%;
  max-width: 280px;
  margin: 25px auto;
  position: relative;
  font-weight: 800;
  animation: textPulse 2s ease-in-out infinite alternate;

  /* Ultra minimalist cu gradient-ul tău */
  background: linear-gradient(135deg, #e60000, #001f54);
  border-radius: 18px;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);

  word-wrap: break-word;
  text-align: center;
}

.hero__text {
  font-family: var(--bodytext);
  color: #fff;
  line-height: 22px;
  font-size: 18px;
  max-width: 350px;
  font-weight: 600;

  margin-bottom: 39px;
}

.hero__img {
  display: none;
}

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

.hero__buttons-btn {
  background: var(--buttonscolor);
  color: white;
  font-size: 17px;
  padding: 14px 30px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  font-family: var(--bodytext);

  margin-bottom: 10px;
}

.hero__buttons-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.hero__buttons-text {
  color: rgb(255, 224, 130);
  font-family: var(--bodytext);
  font-weight: 600;
}

.team__button-li {
  display: none;
  background: var(--buttonscolor);
  color: #fff;
  font-size: 17px;
  padding: 14px 30px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  font-family: var(--bodytext);

  margin-bottom: 10px;
}

.team__button-li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
  .hero {
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .hero__inner {
    min-height: 390px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .hero__title {
    font-size: 52px;
    line-height: 62px;
    padding: 50px 0 15px;
    margin: 0 auto 30px;
    max-width: 600px;
  }

  .hero__text {
    line-height: 26px;
    font-size: 22px;
    max-width: 400px;
    font-weight: 600;

    margin-bottom: 39px;
  }

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

  .hero__buttons-btn {
    background: linear-gradient(135deg, #e30613, #ff4d4d);
    color: white;
    font-size: 17px;
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    font-family: var(--bodytext);

    margin-bottom: 10px;
  }

  .hero__buttons-text {
    color: rgb(255, 224, 130);
    font-family: var(--bodytext);
    font-weight: 600;
  }
}

@media (min-width: 768px) {
  .hero__inner {
    min-height: 465px;
  }

  .hero__text {
    line-height: 26px;
    font-size: 22px;
    max-width: 550px;
    font-weight: 600;

    margin-bottom: 39px;
  }

  .hero__buttons-btn {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .hero__inner {
    min-height: 390px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .hero__textbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }

  .hero__img {
    display: block;
  }

  .hero__img img {
    width: 450px;
    height: 100%;
  }

  .hero__title {
    font-size: 52px;
    line-height: 58px;
    padding: 50px 20px 15px;
    margin: 0;
    max-width: 500px;
    text-align: left;
  }

  .hero__text {
    line-height: 26px;
    font-size: 22px;
    max-width: 600px;
    font-weight: 600;

    margin-bottom: 39px;
    margin-top: 20px;
  }

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

  .hero__buttons-text {
    color: rgb(255, 224, 130);
    font-family: var(--bodytext);
    font-weight: 600;
  }

  .hero__buttons-wrapper button {
    display: none;
  }
  .hero__buttons-wrapper p {
    display: none;
  }

  .hero__textboxbuttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .herowrapper__buttons-btn {
    background: var(--buttonscolor);
    color: white;
    font-size: 17px;
    padding: 20px 46px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    font-family: var(--bodytext);

    white-space: nowrap;
    margin-right: 10px;
  }
  .herowrapper__buttons-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  }

  .herowrapper__buttons-text {
    color: rgb(255, 224, 130);
    font-family: var(--bodytext);
    font-weight: 600;
  }
}

@media (min-width: 1440px) {
  .hero__inner {
    min-height: 700px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .hero__textbox {
    max-width: 800px;
  }

  .hero__img img {
    width: 600px;
    height: 100%;
  }

  .hero__title {
    font-size: 70px;
    line-height: 76px;
    padding: 50px 20px 15px;
    margin: 0;
    max-width: 650px;
  }

  .hero__text {
    line-height: 32px;
    font-size: 26px;
    max-width: 600px;
    font-weight: 600;

    margin-bottom: 39px;
  }

  .hero__textboxbuttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .herowrapper__buttons-btn {
    font-size: 22px;
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    font-family: var(--bodytext);

    white-space: nowrap;
    margin-right: 10px;
  }

  .herowrapper__buttons-text {
    color: rgb(255, 224, 130);
    font-family: var(--bodytext);
    font-weight: 600;
    font-size: 18px;
  }
}

.features {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f7f9fb, #fff);
  text-align: center;
}

.features__title {
  font-family: var(--headingstext);
  font-size: 26px;
  color: var(--blacktextcolor);
  margin-bottom: 60px;
  line-height: 46px;
  text-transform: uppercase;
}

.features__title span {
  display: block;
  font-size: 42px;
  color: var(--redmaincolor);
  font-weight: 700;
}

.features__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.feature-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.feature-text {
  background-color: #ffffff;
  padding: 25px 20px;
  text-align: left;
}

.feature-text h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--redmaincolor);
  font-family: var(--headingstext);
  font-weight: 800;
}

.feature-text p {
  font-size: 16px;
  color: #4b5563;
  font-family: var(--bodytext);
}

@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* FEATURES  END*/
/* TEAM START */

.team {
  background: linear-gradient(135deg, #e60000, #001f54);
}

.team__inner {
  min-height: 250px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.team__textbox {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.4); /* dark transparent bg */
  backdrop-filter: blur(8px); /* blur effect */
  border-radius: 20px;
  padding: 40px;
  max-width: 550px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-left: 6px solid #ff4500; /* orange stripe */
  padding: 16px 20px;

  margin-bottom: 20px;
}

.team__textbox-img {
  width: 200px;
  height: auto;
}

.team__textbox h1 {
  font-family: var(--headingstext);
  color: #fff;
  font-size: 30px;
  line-height: 34px;
  text-transform: uppercase;
  padding: 15px 0 10px;
  max-width: 303px;
  margin: 0 auto;
  position: relative;
  font-weight: 900;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.underline {
  width: 100px;
  height: 4px;
  background: #ff4e00;
  margin-top: 8px;
  border-radius: 2px;
  margin-bottom: 26px;
  align-self: center;
}

.team__textbox h2 {
  font-family: var(--bodytext);
  color: #fff;
  line-height: 22px;
  font-size: 18px;
  max-width: 350px;
  font-weight: 600;

  margin-bottom: 39px;
}

.team__ul {
  font-family: var(--bodytext);
  color: #d5d2d2;
  line-height: 20px;
  font-size: 16px;
  max-width: 350px;
  font-weight: 600;

  margin-bottom: 39px;
}

.team__image img {
  width: 300px;
  height: 100%;
  border-radius: 30px;

  margin-bottom: 40px;
}

.team__button {
  background: var(--buttonscolor);
  color: #fff;
  font-size: 19px;
  padding: 14px 30px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  font-family: var(--bodytext);

  margin-bottom: 10px;
}

.team__span {
  color: #ffe082;
}

.team__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

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

.team__textbox-span {
  color: var(--redmaincolor);
}

@media (min-width: 640px) {
  .team__inner {
    min-height: 390px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
  }

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

    padding: 24px 32px;
    margin-bottom: 25px;
  }

  .team__textbox-img {
    width: 250px;
    height: auto;
  }

  .team__textbox h1 {
    font-size: 45px;
    line-height: 60px;
    padding: 20px 0 0;
    margin: 0 auto 10px;
    font-weight: 900;

    max-width: 450px;
  }

  .underline {
    width: 200px;
    height: 4px;
    background: #ff4e00;
    margin-top: 8px;
    border-radius: 2px;
    margin-bottom: 42px;
    align-self: center;
  }

  .team__textbox h2 {
    line-height: 26px;
    font-size: 22px;
    max-width: 400px;
    font-weight: 600;

    margin-bottom: 39px;
  }

  .team__ul {
    line-height: 26px;
    font-size: 18px;
    max-width: 440px;
    font-weight: 600;

    margin-bottom: 39px;
  }

  .team__image img {
    width: 370px;
    height: 100%;
    border-radius: 30px;

    margin-bottom: 25px;
  }

  .team__button {
    font-size: 17px;
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    font-family: var(--bodytext);

    margin-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .team__inner {
    min-height: 465px;
  }

  .team__button {
    margin-bottom: 20px;
  }

  .team__image img {
    width: 550px;
    height: 100%;
    border-radius: 30px;

    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .team__inner {
    min-height: 390px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 52px 0 0;
    gap: 30px;
  }

  .team__textbox {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;

    padding: 40px 48px;
  }

  .team__textbox-img {
    align-self: flex-start;
    width: 270px;
    height: auto;
  }

  .team__textbox h1 {
    font-size: 52px;
    line-height: 60px;
    padding: 30px 0 0px;
    margin: 0 auto 15px;
    font-weight: 900;

    max-width: 600px;
  }

  .underline {
    width: 200px;
    height: 4px;
    background: #ff4e00;
    margin-top: 8px;
    border-radius: 2px;
    margin-bottom: 42px;
    align-self: flex-start;
  }

  .team__textbox h2 {
    line-height: 26px;
    font-size: 22px;
    max-width: 450px;
    font-weight: 600;

    margin-bottom: 39px;
  }

  .team__ul {
    line-height: 26px;
    font-size: 18px;
    max-width: 440px;
    font-weight: 600;

    margin-bottom: 39px;
  }
  .team__image {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .team__image img {
    width: 420px;
    height: 100%;
    border-radius: 30px;

    margin-bottom: 20px;
  }

  .team__button {
    display: none;
  }

  .team__button-li {
    display: block;
    margin-top: 30px;
  }
}

@media (min-width: 1220px) {
  .team__image img {
    width: 500px;
    height: 100%;
  }
}

@media (min-width: 1440px) {
  .team__inner {
    min-height: 700px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 20px;
    gap: 50px;
  }

  .team__textbox {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;

    padding: 48px 60px;
  }

  .team__textbox-img {
    /* align-self: center; */
    width: 320px;
    height: auto;
  }

  .team__textbox h1 {
    font-size: 50px;
    line-height: 55px;
    padding: 30px 0 0;
    margin: 10px 0 15px;
    font-weight: 900;

    max-width: 750px;
  }

  .underline {
    width: 200px;
    height: 4px;
    background: #ff4e00;
    margin-top: 8px;
    border-radius: 2px;
    margin-bottom: 42px;
    align-self: flex-start;
  }

  .team__textbox h2 {
    line-height: 26px;
    font-size: 26px;
    max-width: 600px;
    font-weight: 600;

    margin-bottom: 39px;
  }

  .team__ul {
    line-height: 32px;
    font-size: 20px;
    max-width: 600px;
    font-weight: 600;

    margin-bottom: 39px;
  }

  .team__image img {
    width: 720px;
    height: 100%;
    border-radius: 30px;

    margin-bottom: 20px;
  }

  .team__button-li {
    font-size: 18px;
  }
}

/* TEAM TWO */

.teamtwo {
  padding: 100px 40px;
  background: linear-gradient(135deg, #e60000, #001f54);
}

@media (min-width: 420px) {
}

@media (min-width: 640px) {
}

@media (min-width: 1024px) {
  #team__innertwo {
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
  }

  #team__textboxtwo {
    max-width: 600px;
  }
}

@media (min-width: 1440px) {
  #team__innertwo {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  #team__textboxtwo {
    max-width: 600px;
  }
}

/* START LOCATION */

.location {
  padding: 80px 0;
  background: linear-gradient(180deg, #f5f5f5, #ffffff);
  text-align: center;
}

.location__textbox {
  display: flex;
  text-align: center;
  align-items: center;

  margin-bottom: 10px;
}

.location__textbox-icon {
  width: 40px;
  height: auto;
}

.location__title {
  font-family: var(--headingstext);
  font-size: 30px;
  color: var(--redmaincolor);
  margin-bottom: 50px;
  text-transform: uppercase;
}

.location__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.location__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition: all 0.3s ease;
  transform: translateY(0);
  position: relative;
}

.location__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(227, 6, 19, 0.25);
  border-color: #e30613;
}

.location__image-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.location__text {
  padding: 24px;
  text-align: left;
}

.location__text h3 {
  font-size: 22px;
  color: #e30613;
  font-weight: 800;
  font-family: var(--headingstext);
  /* margin-bottom: 10px; */
}

.location__text p {
  font-size: 16px;
  color: #4b5563;
  font-family: var(--bodytext);
  line-height: 1.5;
  margin-bottom: 20px;
}

.location__btn {
  display: inline-block;
  background: var(--buttonscolor);
  color: #fff;
  font-size: 15px;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  font-family: var(--bodytext);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.location__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(227, 6, 19, 0.25);
}

/* Breakpoints */
@media (min-width: 640px) {
  .location__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location__title {
    font-family: var(--headingstext);
    font-size: 45px;
    color: var(--redmaincolor);
    margin-bottom: 50px;
    text-transform: uppercase;
  }
}

@media (min-width: 1024px) {
  .location__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .location__text h3 {
    font-size: 24px;
  }

  .location__text p {
    font-size: 18px;
  }

  .location__btn {
    font-size: 16px;
    padding: 14px 28px;
  }

  .location__title {
    font-size: 52px;
    margin-bottom: 50px;
  }
}

.feedback {
  background: linear-gradient(to bottom, #f7f9fb, #ffffff);
  padding: 80px 20px;
  text-align: center;
}

.feedback__title {
  font-family: var(--headingstext);
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--blacktextcolor);
  text-transform: uppercase;
}

.feedback__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

.feedback__card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  padding: 30px;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.feedback__card:hover {
  transform: translateY(-4px);
  border-color: #e30613;
}

.feedback__text {
  font-size: 18px;
  font-family: var(--bodytext);
  color: #4b5563;
  margin-bottom: 24px;
}

.feedback__person {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 16px;
}

.feedback__person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.feedback__person h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.feedback__person p {
  font-size: 14px;
  color: gray;
  margin: 0;
}

.hidden-feedback {
  display: none;
}

.feedback__buttonwrapper {
  margin-top: 40px;
}

.feedback__showmore {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 12px;
  background: var(--buttonscolor);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback__showmore:hover {
  transform: translateY(-4px);
}

@media (min-width: 768px) {
  .feedback__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feedback__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feedback__text {
    font-size: 18px;
    font-family: var(--bodytext);
    color: #4b5563;
    margin-bottom: 24px;
  }

  .feedback__person {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .feedback__person img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }

  .feedback__person h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
  }

  .feedback__person p {
    font-size: 16px;
    color: gray;
    margin: 0;
  }
}

/* FEEDBACK END */
/* TEAM START */

.team {
  background-color: #f9f9f9;
  padding: 70px 16px;
  text-align: center;
  /* border-radius: 20px; */
}

.team__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
}

.team__subtitle {
  font-size: 16px;
  color: var(--grayaccentcolor);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  justify-items: center;
}

.team__card {
  background: white;
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: left;
  max-width: 360px;
  width: 100%;
}

#team__card-igor {
  object-fit: cover;
  object-position: center 20%; /* sau ajustează 25%, 30%... */
}

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

.team__card img {
  width: 100%;
  height: 500px; /* Or try 260px */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.team__card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 1.5px;
}

.team__card h2 {
  font-size: 18px;
  font-weight: 500;
  color: #e30613;
  margin-bottom: 12px;
}

.team__desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Tablet (≥768px) */
@media (min-width: 768px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .team__title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
  }

  .team__subtitle {
    font-size: 17px;
    color: var(--grayaccentcolor);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.5;
  }

  .team__card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .team__card h2 {
    font-size: 18px;
    font-weight: 500;
    color: #e30613;
    margin-bottom: 12px;
  }

  .team__desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
}

/* Desktop (≥1024px) */
@media (min-width: 1024px) {
  .team {
    padding: 100px 40px;
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .team__title {
    font-size: 52px;
  }

  .team__subtitle {
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
  }

  .team__card {
    padding: 32px 24px;
  }

  .team__card h3 {
    font-size: 22px;
  }

  .team__card h2 {
    font-size: 20px;
  }

  .team__desc {
    font-size: 16px;
  }
}

/* === Carduri Beneficii (Mobile First) === */

.team__cards-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobil: 1 pe rând */
  gap: 16px;
  margin: 32px 0;
}

.team__cards-grid .team__card {
  background: linear-gradient(145deg, #ffffff, #f4f4f4);
  border-radius: 16px;
  padding: 5px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #e30613;
  cursor: pointer;
  min-height: 60px;
  letter-spacing: 0.3px;
  font-style: italic;
}

.team__cards-grid .team__card:hover {
  transform: translateY(-5px);
}

@media (min-width: 640px) {
  .team__cards-grid .team__card {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .team__cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team__cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team__cards-grid .team__card {
    font-size: 18px;
  }
}

/* TEAM END */
/* CONTACT START */

.contact {
  background: linear-gradient(135deg, #fff5f5 0%, #ffeaea 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(227, 6, 19, 0.05) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.contact__form,
.contact__quote {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact__form::before,
.contact__quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.contact__form:hover::before,
.contact__quote:hover::before {
  left: 100%;
}

.contact__form:hover,
.contact__quote:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact__form h2 {
  font-family: var(--headingstext);
  font-size: 28px;
  margin-bottom: 28px;
  color: var(--redmaincolor);
  position: relative;
}

.contact__form h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--redmaincolor), transparent);
}

.contact__form p {
  margin-bottom: 20px;
  color: #444;
}

.contact__form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__form input {
  padding: 15px 20px;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
}

.contact__form input:focus {
  outline: none;
  border-color: var(--redmaincolor);
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.1);
}

.contact__form button {
  background: var(--buttonscolor);
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact__form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.contact__form button:hover::before {
  left: 100%;
}

.contact__form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(227, 6, 19, 0.3);
}

.contact__quote {
  background: linear-gradient(135deg, #e30613 0%, #ff4d4d 50%, #e30613 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  position: relative;
}

.contact__quote::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  border-radius: 20px;
}

.football-icon {
  margin-bottom: 20px;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.contact__football-img {
  width: 200px;
  height: 100%;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.contact__quote h3 {
  font-size: 24px;
  font-family: "Russo One", sans-serif;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.contact__quote p {
  font-size: 16px;
  position: relative;
  z-index: 1;
}

/* Phone number section */
.contact__phone {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.contact__phone p {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 400;
}

.contact__phone-number {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #e74c3c;
  text-decoration: none;
  font-family: "Russo One", sans-serif;
  transition: all 0.3s ease;
}

.contact__phone-number:hover {
  color: #c0392b;
  transform: scale(1.05);
}

/* Your existing CSS continues here... */
.contact__football-img {
  width: 200px;
  height: 100%;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.contact__quote p {
  font-size: 16px;
  position: relative;
  z-index: 1;
}

/* Responsive breakpoints */
@media (min-width: 640px) {
  .contact__quote h3 {
    font-size: 28px;
  }
  .contact__football-img {
    width: 250px;
    height: 100%;
  }
  .contact__form h2::after {
    width: 120px;
  }

  /* Phone number responsive */
  .contact__phone p {
    font-size: 15px;
  }
  .contact__phone-number {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .contact__wrapper {
    flex-direction: row;
    align-items: stretch;
  }

  .contact__form,
  .contact__quote {
    flex: 1;
  }
  .contact__form h2 {
    font-size: 36px;
  }

  .football-icon svg {
    width: 100px;
    height: 100px;
  }

  .contact__football-img {
    width: 220px;
    height: 100%;
  }

  /* Phone number responsive */
  .contact__phone p {
    font-size: 16px;
  }
  .contact__phone-number {
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  .contact__quote h3 {
    font-size: 34px;
    max-width: 400px;
  }
  .contact__quote p {
    font-size: 17px;
  }

  .contact__form h2 {
    font-size: 42px;
  }

  .contact__form p {
    font-size: 18px;
  }

  .football-icon svg {
    width: 120px;
    height: 120px;
  }

  .contact__football-img {
    width: 350px;
    height: 100%;
  }

  .contact__form h2::after {
    width: 150px;
  }

  /* Phone number responsive */
  .contact__phone p {
    font-size: 17px;
  }
  .contact__phone-number {
    font-size: 24px;
  }
}

@media (min-width: 1440px) {
  .contact__form h2 {
    font-size: 52px;
  }

  .contact__quote h3 {
    font-size: 42px;
    max-width: 500px;
  }

  /* Phone number responsive */
  .contact__phone p {
    font-size: 18px;
  }
  .contact__phone-number {
    font-size: 26px;
  }
}

.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: #ffffff;
  padding: 60px 0 0;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__section {
  text-align: center;
}

.footer__logo img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.footer__description {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 25px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.footer__social-link:hover {
  background: #e74c3c;
  transform: translateY(-3px);
}

.footer__social-link img {
  width: 20px;
  height: 20px;
  /* filter: brightness(0) invert(1); */
}

.footer__title {
  font-size: 20px;
  font-family: "Russo One", sans-serif;
  margin-bottom: 20px;
  color: #e74c3c;
}

.footer__list {
  list-style: none;
  padding: 0;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__link {
  color: #cccccc;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #e74c3c;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  gap: 10px;
}

.footer__contact-icon {
  font-size: 18px;
}

.footer__contact-link,
.footer__contact-text {
  color: #cccccc;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer__contact-link:hover {
  color: #e74c3c;
}

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

.footer__bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer__copyright {
  color: #cccccc;
  font-size: 14px;
  text-align: center;
}

/* Responsive Design */
@media (min-width: 640px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .footer__section {
    text-align: left;
  }

  .footer__social {
    justify-content: flex-start;
  }

  .footer__description {
    margin-left: 0;
  }

  .footer__contact-item {
    justify-content: flex-start;
  }

  .footer__logo img {
    width: 140px;
  }
}

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

  .footer__content {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__bottom-content {
    flex-direction: row;
    justify-content: center;
  }

  .footer__title {
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  .footer__content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
  }

  .footer__logo img {
    width: 160px;
  }

  .footer__description {
    font-size: 17px;
    max-width: 350px;
  }

  .footer__social-link {
    width: 45px;
    height: 45px;
  }

  .footer__social-link img {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 1440px) {
  .footer {
    padding: 100px 0 0;
  }

  .footer__content {
    gap: 80px;
  }
}

/* Card movement animation */
.team__card {
  animation: cardFloat 6s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

/* Different delays for each card */
.team__card:nth-child(1) {
  animation-delay: 0s;
}
.team__card:nth-child(2) {
  animation-delay: 1s;
}
.team__card:nth-child(3) {
  animation-delay: 2s;
}
.team__card:nth-child(4) {
  animation-delay: 3s;
}
.team__card:nth-child(5) {
  animation-delay: 4s;
}
.team__card:nth-child(6) {
  animation-delay: 5s;
}

/* Floating keyframe */
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Hover effect with red shadow */
.team__card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 40px 60px rgba(230, 0, 0, 0.3);
  animation-play-state: paused;
}

#antrenament__gratuit-span {
  color: red;
}
