@font-face {
  font-family: "Cabinet";
  src: url(CabinetGrotesk-Variable.ttf);
}
@font-face {
  font-family: "Satoshi";
  src: url(Satoshi-Variable.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Cabinet";
}

body,
html {
  height: 100%;
  width: 100%;
  background: #000;
}

.container {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

/* ========== LEFT SECTION ========== */
.left-section {
  width: 80%;
  height: 100vh;
  background: linear-gradient(to bottom, #e2252d, #e6a1a1);
  color: #fff;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  gap: 30px;
  text-align: center;
}

.left-section .map-container {
  width: 100%;
  max-width: 600px;
  border: 4px solid #fff;
  border-radius: 8px;
  overflow: hidden;
}

.left-section .company-address {
  font-size: 18px;
  line-height: 1.6;
}

.left-section .company-address h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}
.profile .avatar {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.profile .name {
  font-weight: bold;
  margin-top: 10px;
  color: white;
}

.profile .role {
  margin-top: 5px;
  font-size: 1em;
  color: white;
}

.contact-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-buttons button {
  background: #ffff;
  color: #000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 0.9em;
  border-radius: 5px;
}

.tagline h1 {
  font-size: 2.8em;
  font-weight: 600;
  color: white;
  font-family: "Cabinet";
}

.tagline .light-text {
  font-weight: 300;
  color: white;
  font-family: "Cabinet";
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}


/* ========== RIGHT SECTION ========== */
.right-section {
  flex: 1.3;
  background: #fff;
  color: #000;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.right-section h2 {
  font-weight: 300;
  margin-bottom: 30px;
  font-size: 2em;
  color: #000;
}

.right-section .bold-text {
  font-weight: 600;
  color: #000;
}

/* ========== NAVBAR ========== */
.navbar {
  position: absolute;
  top: 25px;
  right: 40px;
}

.navbar ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.navbar ul li a {
  color: #000;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.3s ease;
  font-family: "Satoshi", sans-serif;
}

.navbar ul li a:hover {
  color: #e2252d;
}
.nav-links li.nav-link.active a {
  color: white;
  background-color: #e2252d;
  font-weight: 700;
  padding: 12px;
  border-radius: 6px;
}
/* ========== FORM ========== */
form {
  display: flex;
  flex-direction: column;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.services button {
  background: transparent;
  color: #000;
  border: 1px solid #ccc;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Satoshi";
}

.services button.selected {
  background: #e2252d;
  color: white;
}

form input,
form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #aaa;
  color: #000;
  margin-bottom: 20px;
  padding: 10px 5px;
  font-size: 1em;
  font-family: "Satoshi";
}

.submit-btn {
  background: #e2252d;
  color: white;
  border: none;
  padding: 15px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  font-family: "Satoshi";
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablets */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left-section,
  .right-section {
    width: 100%;
    padding: 30px 20px;
  }

  .tagline h1 {
    font-size: 2.2em;
  }

  .right-section h2 {
    font-size: 1.8em;
  }

  .navbar {
    position: static;
    margin-bottom: 20px;
  }

  .navbar ul {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .left-section {
    display: none;
  }
  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons button {
    width: 100%;
  }

  .tagline h1 {
    font-size: 1.8em;
  }

  .right-section h2 {
    font-size: 1.6em;
  }

  .services {
    flex-direction: column;
  }

  .services button {
    width: 100%;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .navbar ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
