/* ======================================== */
/* FONTS */
/* ======================================== */
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
/* ======================================== */
/* VARIABLES */
/* ======================================== */
/* ======================================== */
/* GLOBAL */
/* ======================================== */
body {
  font-family: "Poppins";
  background: white;
  color: #0C1328;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

.section-header {
  margin-bottom: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section-header h2 {
  max-width: 620px;
  font-family: "Gilroy";
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.95;
}
.section-header p {
  margin-top: 28px;
  max-width: 520px;
  line-height: 1.8;
  opacity: 0.7;
}

.section-link {
  color: #E58A00;
  text-decoration: none;
  font-weight: 600;
}

/* ======================================== */
/* HEADER */
/* ======================================== */
.site-header {
  padding: 28px 0;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Gilroy";
  color: #0C1328;
}
.navbar-brand span {
  color: #E58A00;
}

.logo-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E58A00;
  color: white;
  font-size: 14px;
}

.navbar-nav {
  gap: 40px;
}

.nav-link {
  position: relative;
  font-size: 13px;
  letter-spacing: 1px;
  color: #0C1328;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: #E58A00;
}

/* ======================================== */
/* BUTTONS */
/* ======================================== */
.btn {
  padding: 16px 28px;
  border-radius: 16px;
  font-size: 14px;
  border: none;
}

.btn-dark-custom {
  background: #0C1328;
  color: white;
}

.btn-primary-custom {
  background: #E58A00;
  color: white;
}

.btn-light-custom {
  background: white;
  border: 1px solid rgba(12, 19, 40, 0.08);
}

/* ======================================== */
/* HERO */
/* ======================================== */
.hero-section {
  padding: 120px 0;
  background: #F7F7F5;
}

.hero-content {
  max-width: 560px;
}

.hero-label {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #E58A00;
}

.hero-title {
  font-family: "Gilroy";
  font-size: clamp(72px, 8vw, 110px);
  line-height: 0.92;
}
.hero-title span {
  color: #E58A00;
  font-style: italic;
}

.hero-text {
  margin-top: 36px;
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.72;
}

.hero-buttons {
  margin-top: 48px;
  display: flex;
  gap: 20px;
}

.hero-image-wrapper {
  position: relative;
}
.hero-image-wrapper img {
  border-radius: 36px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: -24px;
  padding: 22px 28px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}
.hero-badge small {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  opacity: 0.6;
}
.hero-badge strong {
  font-family: "Gilroy";
  font-size: 28px;
}

/* ======================================== */
/* PARTNERS */
/* ======================================== */
.partners-section {
  padding: 90px 0;
  background: white;
}
.partners-section span {
  opacity: 0.4;
}

/* ======================================== */
/* CATEGORIES */
/* ======================================== */
.categories-section {
  padding: 140px 0;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}
.category-card img {
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img {
  transform: scale(1.04);
}

.category-content {
  position: absolute;
  left: 32px;
  bottom: 32px;
  color: white;
}
.category-content span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  letter-spacing: 1px;
}
.category-content h3 {
  font-family: "Gilroy";
  font-size: 38px;
}

/* ======================================== */
/* SERVICES */
/* ======================================== */
.services-section {
  position: relative;
  padding: 140px 0;
  background: #07102A;
  color: white;
  overflow: hidden;
}
.services-section::after {
  content: "";
  position: absolute;
  right: -200px;
  top: 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-50%);
}

.services-header {
  margin-bottom: 100px;
}
.services-header h2 {
  max-width: 700px;
  font-family: "Gilroy";
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.95;
}

.service-item h3 {
  margin-top: 28px;
  font-family: "Gilroy";
  font-size: 32px;
}
.service-item p {
  margin-top: 18px;
  line-height: 1.8;
  opacity: 0.72;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

/* ======================================== */
/* VISIT */
/* ======================================== */
.visit-section {
  padding: 140px 0;
}

.visit-wrapper {
  padding: 80px;
  border-radius: 40px;
  background: #F4F0E2;
}

.visit-content h2 {
  font-family: "Gilroy";
  font-size: clamp(48px, 5vw, 74px);
}

.visit-info {
  margin-top: 48px;
}

.visit-item {
  margin-bottom: 40px;
}
.visit-item h4 {
  margin-bottom: 12px;
  font-family: "Gilroy";
  font-size: 24px;
}
.visit-item p {
  line-height: 1.8;
  opacity: 0.72;
}

.visit-map img {
  border-radius: 32px;
}

/* ======================================== */
/* FOOTER */
/* ======================================== */
.site-footer {
  padding: 120px 0 60px;
  background: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Gilroy";
}
.footer-logo span {
  color: #E58A00;
}

.footer-brand p {
  margin-top: 32px;
  max-width: 320px;
  line-height: 1.9;
  opacity: 0.72;
}

.footer-socials {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}
.footer-socials span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-links h4,
.footer-newsletter h4 {
  margin-bottom: 32px;
  font-family: "Gilroy";
  font-size: 16px;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-links a {
  color: rgba(12, 19, 40, 0.72);
  text-decoration: none;
}

.footer-newsletter p {
  margin-bottom: 24px;
  line-height: 1.8;
  opacity: 0.72;
}
.footer-newsletter form {
  position: relative;
}
.footer-newsletter input {
  width: 100%;
  padding: 18px 56px 18px 0;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  outline: none;
}
.footer-newsletter button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #E58A00;
}

.footer-bottom {
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span {
  opacity: 0.5;
}

.footer-bottom-links {
  display: flex;
  gap: 32px;
}
.footer-bottom-links a {
  color: rgba(12, 19, 40, 0.5);
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */