:root {
  --bs-primary: $primary-color;
  /* Change this to your desired primary color */
  --bs-secondary: $secondary-color;
  /* Change this to your desired secondary color */
}

@font-face {
  font-family: "FjallaOne";
  src: url("../fonts/Fjalla_One/FjallaOne-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
* {
  font-family: "Montserrat";
}

body {
  font-family: "Montserrat";
  background-color: #1b1b1b;
  color: #fff;
  overflow-x: hidden !important;
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
body::-webkit-scrollbar-thumb {
  background-color: #d2ae65;
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #a27c2f;
}
body.show-scrollbar::-webkit-scrollbar {
  opacity: 1;
}
body .no-scroll {
  overflow: hidden;
}

h1,
h2,
h3 {
  color: #d2ae65;
}

a {
  color: #d2ae65;
}
a:hover {
  color: #dec38c;
}

.text-highlight {
  font-family: "FjallaOne";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d2ae65;
}

.section-title {
  font-family: "FjallaOne";
  color: #d2ae65;
  text-transform: uppercase;
}

.navbar {
  background-color: #000;
  padding: 1rem 2rem;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #000, #d2ae65, #000);
}

.navbar-brand-container {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.navbar-brand {
  font-family: "FjallaOne";
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  pointer-events: auto;
  text-transform: uppercase;
}
.navbar-brand:hover {
  color: #fff;
}

.custom-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.custom-hamburger:focus {
  outline: none;
}
.custom-hamburger span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  display: block;
}

.contact-btn {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  z-index: 10;
}

.side-menu {
  height: 100vh;
  width: 250px;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: width 0.5s;
  padding-top: 100px;
  width: 0;
}
.side-menu a {
  font-family: "FjallaOne";
  padding: 10px 25px;
  text-decoration: none;
  font-size: 1.2rem;
  color: #fff;
  display: block;
  transition: 0.3s;
  white-space: nowrap;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.side-menu a.active {
  color: #d2ae65;
}
.side-menu a:hover {
  color: #d2ae65;
}
.side-menu .logo {
  position: absolute;
  bottom: 30px;
  left: 25px;
  width: 80px;
}

.form-container {
  --primary: #1b1b1b;
  --secondary: #d2ae65;
  --light-primary: rgba(210, 174, 101, 0.1);
  --form-padding: 14px;
  --input-height: 56px;
  --font-size: 16px;
  --label-small: 12px;
  --icon-width: 40px;
  /* Handle icon padding */
  /* Keep padding consistent when focused/filled */
  /* Maintain correct padding with icons when focused/filled */
  /* For the container of the textarea */
  /* Adjust the label for textarea to position at the top when focused */
  /* Label positioning for focus or non-empty states */
  /* Keep label position consistent for inputs with icons */
  /* Error message styling */
  /* Custom checkbox styling */
  /* Radio button styling */
  /* Submit button */
  /* Section title */
  /* Clean placeholder on focus */
}
.form-container .card.form-card {
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-container .form-card .card-header {
  background-color: #1b1b1b;
  color: white;
  border-radius: 0 !important;
  padding: 20px;
  font-size: 22px;
  font-weight: 600;
}
.form-container .form-card .card-header span {
  color: #d2ae65;
}
.form-container .form-group {
  margin-bottom: 24px;
  position: relative;
}
.form-container .custom-input-container {
  position: relative;
  height: 56px;
  transition: all 0.3s ease;
}
.form-container .custom-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #d2ae65;
  font-size: 16px;
  z-index: 2;
}
.form-container .custom-label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 4px;
  color: #777;
  font-size: 16px;
  transition: all 0.2s ease-out;
  pointer-events: none;
  z-index: 1;
}
.form-container .input-has-icon .custom-label {
  left: 40px;
}
.form-container .form-control {
  height: 56px;
  padding: 14px;
  font-size: 16px;
  color: #1b1b1b;
  border: 2px solid #ddd;
  border-radius: 0;
  background-color: white;
  transition: all 0.2s ease;
}
.form-container .input-has-icon .form-control {
  padding-left: 40px;
}
.form-container .form-control:not(:-moz-placeholder-shown) {
  padding: 14px;
}
.form-container .form-control:focus,
.form-container .form-control:not(:placeholder-shown) {
  padding: 14px;
}
.form-container .input-has-icon .form-control:not(:-moz-placeholder-shown) {
  padding-left: 40px;
}
.form-container .input-has-icon .form-control:focus,
.form-container .input-has-icon .form-control:not(:placeholder-shown) {
  padding-left: 40px;
}
.form-container .form-control:focus {
  box-shadow: none;
  border-color: #d2ae65;
  background-color: white;
}
.form-container select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-container textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: none;
  padding-top: 14px;
  padding-bottom: 14px;
  vertical-align: top;
  line-height: 1.5;
}
.form-container .custom-input-container:has(textarea) {
  height: auto;
  min-height: 56px;
}
.form-container textarea.form-control ~ .custom-label {
  top: 14px;
  transform: translateY(0);
}
.form-container textarea.form-control:not(:-moz-placeholder-shown) ~ .custom-label {
  top: 0;
  transform: translateY(-50%);
}
.form-container textarea.form-control:focus ~ .custom-label,
.form-container textarea.form-control:not(:placeholder-shown) ~ .custom-label {
  top: 0;
  transform: translateY(-50%);
}
.form-container .form-control:not(:-moz-placeholder-shown) ~ .custom-label {
  top: 0;
  font-size: 12px;
  color: #d2ae65;
  background-color: white;
  font-weight: 600;
  transform: translateY(-50%);
}
.form-container .form-control:focus ~ .custom-label,
.form-container .form-control:not(:placeholder-shown) ~ .custom-label {
  top: 0;
  font-size: 12px;
  color: #d2ae65;
  background-color: white;
  font-weight: 600;
  transform: translateY(-50%);
}
.form-container .input-has-icon .form-control:not(:-moz-placeholder-shown) ~ .custom-label {
  left: 14px;
}
.form-container .input-has-icon .form-control:focus ~ .custom-label,
.form-container .input-has-icon .form-control:not(:placeholder-shown) ~ .custom-label {
  left: 14px;
}
.form-container .error-message {
  display: none;
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
}
.form-container .error-message.visible {
  display: block;
}
.form-container .form-control.error {
  border-color: #dc3545;
}
.form-container .custom-checkbox {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
}
.form-container .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: white;
  border: 2px solid #ddd;
}
.form-container .custom-checkbox:hover input ~ .checkmark {
  border-color: #ccc;
}
.form-container .custom-checkbox input:checked ~ .checkmark {
  background-color: #d2ae65;
  border-color: #d2ae65;
}
.form-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.form-container .custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.form-container .custom-checkbox .checkmark:after {
  left: 8px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-container .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.form-container .custom-radio {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
}
.form-container .custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form-container .radio-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: white;
  border: 2px solid #ddd;
  border-radius: 50%;
}
.form-container .custom-radio:hover input ~ .radio-mark {
  border-color: #ccc;
}
.form-container .custom-radio input:checked ~ .radio-mark {
  border-color: #d2ae65;
}
.form-container .radio-mark:after {
  content: "";
  position: absolute;
  display: none;
}
.form-container .custom-radio input:checked ~ .radio-mark:after {
  display: block;
}
.form-container .custom-radio .radio-mark:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d2ae65;
}
.form-container .btn-custom {
  background-color: #d2ae65;
  color: #1b1b1b;
  border: none;
  font-weight: 600;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 0;
  transition: all 0.3s;
  cursor: pointer;
  height: 56px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-container .btn-custom:hover {
  background-color: #1b1b1b;
  color: #d2ae65;
}
.form-container .btn-outline-custom {
  background-color: transparent;
  color: #1b1b1b;
  border: 2px solid #d2ae65;
  font-weight: 600;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 0;
  transition: all 0.3s;
  cursor: pointer;
  height: 56px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-container .btn-outline-custom:hover {
  background-color: #d2ae65;
  color: #1b1b1b;
}
.form-container .section-title {
  margin-bottom: 20px;
  font-weight: 600;
  color: #1b1b1b !important;
  border-left: 4px solid #d2ae65;
  padding-left: 10px;
  font-family: "Montserrat" !important;
}
.form-container .form-control:focus::-moz-placeholder {
  color: transparent;
}
.form-container .form-control:focus::placeholder {
  color: transparent;
}
.form-container .form-control::-moz-placeholder {
  color: transparent;
}
.form-container .form-control::placeholder {
  color: transparent;
}
.form-container .form-control:focus::-moz-placeholder {
  color: #aaa;
}
.form-container .form-control:focus::placeholder {
  color: #aaa;
}

.input-error {
  color: red;
  font-size: 0.8em;
}

/*
=========================================================================================
Footer
=========================================================================================
*/
footer .footer-1 {
  background: url("../images/footer_1_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
  min-height: 40vh;
}
footer .footer-1 .overlay {
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(42, 42, 42, 0.7);
}
footer .footer-1 .overlay .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .footer-1 .overlay .container .title {
  color: #fff;
  font-family: "FjallaOne";
  text-transform: uppercase;
}
footer .footer-1 .overlay .container .btn-footer-1 {
  background-color: #d2ae65;
  padding: 15px 25px;
  font-weight: 600;
  border: none;
  box-shadow: none;
  border: 2px solid #d2ae65;
  transition: 0.2s linear;
}
footer .footer-1 .overlay .container .btn-footer-1:hover {
  background-color: #1b1b1b;
  color: #d2ae65;
}
@media (max-width: 768px) {
  footer .footer-1 .overlay .container .btn-footer-1 {
    width: 100%;
  }
}
footer .footer-2 {
  color: #fff;
}
footer .footer-2 .footer-logo {
  width: 20%;
}
footer .footer-2 table td {
  background-color: transparent;
  color: #fff;
}
footer .footer-2 table td.td-icon {
  width: 1%;
  white-space: nowrap;
}
footer .footer-2 .footer-title {
  font-weight: bold;
  margin-bottom: 20px;
}
footer .footer-2 ul {
  padding: 0px;
}
footer .footer-2 ul li {
  list-style-type: none;
  padding: 5px 0px;
}
footer .footer-2 ul li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}
footer .footer-2 ul li a:hover {
  text-decoration: underline;
}
footer .footer-2 .social-link {
  font-size: 1.5rem;
  color: #fff;
}
footer .footer-last {
  background-color: #333;
  font-size: 0.8rem;
}
footer .footer-last a {
  text-decoration: none;
  color: #fff;
  margin-right: 20px;
  margin-left: 0px;
  font-weight: 600;
}
@media (min-width: 576px) {
  footer .footer-last a {
    margin-left: 20px;
    margin-right: 0px;
  }
}
footer .footer-last a:hover {
  text-decoration: underline;
}

.fab {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 1000;
}
.fab .btn-fab {
  background-color: #007bff;
  color: white;
  border: none;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
  border-radius: 50%;
}
.fab .btn-fab[data-shape=normal] {
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 10px 15px;
}
.fab .btn-fab:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

#scrollToTopBtn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: #d2ae65;
}

#callBackModal {
  color: #1b1b1b;
}
#callBackModal .modal-header {
  border-bottom: none;
}
#callBackModal .modal-body .section-title {
  font-family: "Montserrat";
}

.hero {
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .hero {
    min-height: 30vh;
    background: url("../images/contact/contact_mobile.jpg") no-repeat center/cover;
  }
}
@media (min-width: 768px) {
  .hero {
    min-height: 70vh;
    background: url("../images/contact/contact_pc.jpg") no-repeat center/cover;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
}
.hero .page-heading {
  position: absolute;
  bottom: 0;
  left: 5%;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .contact-container .contact-card {
    background-color: white;
    box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.3);
  }
}
.contact-container .contact-card .text-container {
  color: #1b1b1b;
}
.contact-container .contact-card .text-container h2 {
  font-weight: bold;
  color: #1b1b1b;
}
.contact-container .contact-card .text-container table td {
  background-color: transparent;
}
.contact-container .contact-card .text-container table td.td-icon {
  width: 1%;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .contact-container .contact-card .text-container {
    background-color: #1b1b1b;
    color: #fff;
  }
  .contact-container .contact-card .text-container h2 {
    color: #fff;
  }
  .contact-container .contact-card .text-container table td {
    color: #fff;
  }
}
.contact-container .contact-card .form-container {
  background-color: white;
}/*# sourceMappingURL=contact.css.map */