/* ===========================
   NAVIGATION SECTION
=========================== */

.navbar {
  background: white;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.navbar__toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  display: none;
  cursor: pointer;
}

.navbar__menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar__link {
  text-decoration: none;
  font-weight: 500;
  color: var(--color-dark);
  transition: color 0.2s ease;
}

.navbar__link:hover {
  color: var(--color-primary);
}

/* MOBILE NAV TOGGLE */
@media (max-width: 768px) {
  .navbar__toggle {
    display: block;
  }

  .navbar__menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-top: 1px solid #eee;
    z-index: 999;
  }

  .navbar__menu.active {
    display: flex;
  }

  .navbar__link {
    padding: 0.75rem 0;
    font-size: 1.125rem;
  }

  .navbar__langswitch {
    display: none;
  }
}


/* ===========================
   CARDS SECTION
=========================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
  padding: 2rem;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  background-color: #f8f9fc;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.card__text {
  color: var(--color-gray);
}


/* ===========================
   SERVICES SECTION
=========================== */
.section#section-services ul {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.section#section-services li {
  background: #f0f4f8;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease;
}

.section#section-services li:hover {
  background: #e6eef5;
}

.section#section-services li strong {
  display: block;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  background: white /*linear-gradient(to right, #e0f0ff, white);*/
  text-align: center;
  padding: 0rem;
  color: white;
}

.hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* ===========================
   FAQ
=========================== */
.faq-item {
  margin-bottom: 2rem;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-size: 1rem;
  color: var(--color-gray);
}

/* ===========================
   FORM
=========================== */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input, textarea {
  max-width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  min-width: 90%;
}
input[type="checkbox"] {
  min-width: auto;
}
.form-check-input {
  width: auto;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 4rem 1rem;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__col {
  flex: 1 1 250px;
}

.footer__map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 0.5rem;
}

/* ===========================
   SOCIAL ICONS
=========================== */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: white;
  color: #1a1a1a;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1rem;
}

/* ===========================
   CTA SECTION
=========================== */
.section--cta {
  background-color: var(--color-primary);
  /*background: linear-gradient(to right, #001933, #004c99);*/
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

/* ===========================
   FORM SECTION
=========================== */
form button[type="submit"] {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

form button[type="submit"]:hover {
  background-color: #002244;
}

@media (max-width: 768px) {
  form button[type="submit"] {
    width: 100%;
    text-align: center;
  }
}

/* ===========================
   OFFER SECTION
=========================== */

.section--offer {
  /*primary: #003366
  background: linear-gradient(to right, #001933, #004c99);
  */
  background-color: var(--color-primary);
  color: white;
}

.info-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .info-form-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.info-block h1,
.info-block h3 {
  margin-bottom: 1rem;
}

.info-block p {
  margin-bottom: 0.75rem;
}


/* ===========================
   SCROLL TO TOP
=========================== */
#scrollTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: none;
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

#scrollTopBtn:hover, a.btn--primary {
  background-color: var(--color-primary);
}
a.btn {
  padding: 10px 20px;
  color: white;
  text-decoration: none;
}
a.btn-lg {
  padding: 0.8rem 2.5rem;
  font-size: larger;
}
a.btn:hover {
  /* ide */ 
}
a.btn--primary {
  background-color: var(--color-primary);
}
a.btn--white {
  background-color: white;
  color: black;
}