/* Base */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #222;
  line-height: 1.6;
}
h1, h2, h3, p {
  margin: 0;
}
img {
  max-width: 100%;
  display: block;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------- Hero Section ---------------- */
.hero {
  padding: 100px 20px;
  background: url("images/headerBackground.png") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Each element has its own spacing */
.hero-logo {
  max-width: 270px;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.hero p {
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  text-decoration: none;   /* remove underline for links */
  cursor: pointer;         /* show pointer on hover */
  transition: all 0.3s ease-in-out;
}
.info-item:hover {
  opacity: 0.8;
  scale: 1.02;
}

.info-item img {
  height: 80px;
}

/* ---------------- Locations Section ---------------- */
.locations {
  background: #fff;
  padding: 100px 0;
}

.locations .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.location-card {
  flex: 1 1 500px;
  max-width: 500px;
  text-align: center;
}

.location-card img {
  transition: all 0.3s ease-in-out;
}

.location-card img:hover {
  scale: 1.02;
}

/* Elements with margin-bottom for spacing */
.location-card img:first-child {
  margin-bottom: 50px;
}

.location-card h3 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.highlight {
  color: #ba0b42;
}

.workingHoursText {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.icon,
.iconPhone {
  width: 100px;
  margin: 45px auto 50px;
  display: block;
}
.location-card a img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease-in-out;
}
.location-card a {
  text-decoration: none;
  cursor: pointer;
}
.location-card a:hover img {
  opacity: 0.8;
  scale: 1.05;
}

.iconPhone {
  margin: 55px auto 50px;
}

.location-card .address {
  font-size: 2rem;
  margin-bottom: 15px;
}

.location-card .phone {
  font-size: 2rem;
  margin-bottom: 15px;
}

.location-card .btn {
  margin-top: 40px;
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(18deg, #646464, #ba0b42);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.location-card .btn:hover {
  opacity: 0.8;
  scale: 1.05;
}

/* ---------------- Footer ---------------- */
.footer {
  background: linear-gradient(18deg, #646464, #ba0b42);
  color: #fff;
  padding: 40px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}
.footer-left img {
  width: 70px;
}

.footer-right {
  max-width: 500px;
}

.footer-right .social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.footer-right .social-icons a {
  transition: all 0.3s ease-in-out;
}

.footer-right .social-icons a:hover {
  opacity: 0.8;
  scale: 1.05;
}

.footer-right img {
  height: 50px;
}

.footer-right p {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

/* ------------------- */

.conatactUs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-color: rgba(235, 235, 235, 0.5);
}

.conatactUs_Full {
  padding: 85px 0 95px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;
}

.form_text {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 30px;
}

.form_button_main {
  font-family: 'Montserrat', sans-serif;
  width: 250px;
  margin-top: 40px;
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(18deg, #646464, #ba0b42);
  border-radius: 40px;
  transition: all 0.3s ease-in-out;
  border: none;
  outline: none;
  text-align: center;
  cursor: pointer;
}

.form_button_main:hover {
  opacity: 0.8;
  scale: 1.02;
}

.form__block {
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 2px 2px 30px 2px rgba(0,0,0,0.02);
}

.input {
  height: 35px;
  width: 100%;
  background-color: transparent;
  border: 0;
  outline: none;
  border-bottom: 1px solid #000000;
  color: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.textarea {
  resize: none;
}

.input__text {
  position: absolute;
  top: 10px;
  left: 0;
  color: #000000;
  font-weight: 400;
  transition: all 0.4s;
}

.input__label {
  width: 100%;
  position: relative;
  height: 55px;
  display: flex;
  flex-direction: column;
}

.input__line {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #8b8484;
  width: 0;
  height: 1px;
  display: inline-block;
  transition: all 0.4s;
}

.input:focus ~ .input__line {
  width: 100%;
}

.input:valid ~ .input__text,
.input:focus ~ .input__text {
  top: 0;
  font-size: 11px;
  color: #000000;
  font-weight: 400;
}

.label_form {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.form {
  width: 100%;
}

.input2 {
  padding: 0 10px 10px 0;
  height: 100px;
  resize: none;
}

.input__label2 {
  position: relative;
  height: 130px;
  display: flex;
  flex-direction: column;
  width: 100%;
}


/* ---------------- Responsive ---------------- */
@media (max-width: 1200px) {
  .locations .container {
    justify-content: center;
    gap: 40px;
  }
  .location-card {
    flex: 1 1 45%;
    max-width: 450px;
  }
  .location-card img:first-child {
    max-width: 90%;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .locations .container {
    justify-content: center;
    gap: 40px;
  }
  .location-card {
    flex: 1 1 45%;
    max-width: 450px;
  }
  .location-card h3 {
    font-size: 2.5rem;
  }
  .location-card img:first-child {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .form__block {
  width: 60%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.2rem; }
  .locations .container {
    flex-direction: column;
    align-items: center;
  }
  .footer .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .locations {
    padding: 60px 0;
  }
  .info-item {
    font-size: 1.4rem;
  }
  .form_text {
  font-size: 2.5rem;
}
.conatactUs_Full {
  padding: 55px 0 65px;
}
}

/* Small Devices */
@media (max-width: 375px) {
  .hero h1 { font-size: 1.6rem; }
  .info-item {
    font-size: 0.9rem;
    flex-direction: column;
    gap: 5px;
  }
  .location-card { font-size: 0.9rem; }
  .location-card .btn { font-size: 0.9rem; padding: 10px 18px; }
  .footer-right p { font-size: 0.8rem; }

  .location-card .btn {
  font-size: 1.5rem;
  }
    .info-item {
    font-size: 1.2rem;
  }
}

@media (max-width: 425px) {
  .info-item img {
  height: 60px;
}
    .info-item {
    font-size: 1.2rem;
  }
}

@media (max-width: 650px) {
  .form_text {
    width: 80%;
  font-size: 2.2rem;
}
}

@media (max-width: 600px) {
.form_button_main {
  width: 200px;
  margin-top: 40px;
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(18deg, #646464, #ba0b42);
  border-radius: 40px;
  transition: all 0.3s ease-in-out;
  border: none;
  outline: none;
  text-align: center;
  cursor: pointer;
}
}

