@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", sans-serif;
  color: #111418;
  background: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f07020;
  margin-bottom: 0.8rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #f07020;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate=fade-left] {
  transform: translateX(-30px);
}
[data-animate=fade-left].animated {
  transform: translateX(0);
}

[data-animate=fade-right] {
  transform: translateX(30px);
}
[data-animate=fade-right].animated {
  transform: translateX(0);
}

[data-animate=scale] {
  transform: scale(0.92);
}
[data-animate=scale].animated {
  transform: scale(1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.scrolled {
  background: rgba(26, 32, 48, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.site-header.scrolled .header__inner {
  padding: 0.9rem 2rem;
}
.site-header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .site-header .header__inner {
    padding: 1rem 1.2rem;
  }
}
.site-header .header__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.site-header .header__logo img {
  height: 52px;
  width: auto;
}
@media (max-width: 768px) {
  .site-header .header__logo img {
    height: 42px;
  }
}
.site-header .header__logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-header .header__logo .logo-text .logo-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.site-header .header__logo .logo-text .logo-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f07020;
  margin-top: 2px;
}
.site-header .header__nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
@media (max-width: 992px) {
  .site-header .header__nav {
    display: none;
  }
  .site-header .header__nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #1a2030;
    padding: 6rem 2rem 2rem;
    gap: 0;
    z-index: 999;
  }
}
.site-header .header__nav a {
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0.9rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.site-header .header__nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: #f07020;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.site-header .header__nav a:hover {
  color: #ffffff;
}
.site-header .header__nav a:hover::after {
  transform: scaleX(1);
}
@media (max-width: 992px) {
  .site-header .header__nav a {
    font-size: 1.4rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    color: #ffffff;
    letter-spacing: 0.08em;
  }
}
.site-header .header__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .header__cta .btn-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f07020;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .header__cta .btn-call i {
  font-size: 1rem;
}
.site-header .header__cta .btn-call:hover {
  background: rgb(242.5714285714, 136.5142857143, 70.2285714286);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240, 112, 32, 0.4);
}
@media (max-width: 768px) {
  .site-header .header__cta .btn-call {
    display: none;
  }
}
.site-header .header__cta .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}
.site-header .header__cta .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .header__cta .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.site-header .header__cta .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.site-header .header__cta .hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 992px) {
  .site-header .header__cta .hamburger {
    display: flex;
  }
}

.announce-bar {
  background: #1e4d8c;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.5rem 1rem;
}
.announce-bar a {
  color: #f07020;
  font-weight: 700;
  margin-left: 0.4rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: #1a2030;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding-top: 80px;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: #1e4d8c;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
@media (max-width: 992px) {
  .hero::after {
    display: none;
  }
}
.hero__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  padding: 5rem 2rem;
}
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    padding: 4rem 1.2rem;
  }
}
.hero__content {
  padding-right: 4rem;
}
@media (max-width: 992px) {
  .hero__content {
    padding-right: 0;
    text-align: center;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(240, 112, 32, 0.12);
  border: 1px solid rgba(240, 112, 32, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.6rem;
}
.hero__badge span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f07020;
}
.hero__badge i {
  font-size: 0.8rem;
  color: #f07020;
}
.hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin-bottom: 1.6rem;
}
.hero__title em {
  font-style: normal;
  color: #f07020;
  display: block;
}
.hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.4rem;
}
@media (max-width: 992px) {
  .hero__desc {
    margin: 0 auto 2.4rem;
  }
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .hero__actions {
    justify-content: center;
  }
}
.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #f07020;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.hero__btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(240, 112, 32, 0.45);
}
.hero__btn-primary:hover::before {
  transform: scaleX(1);
}
.hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 1rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__btn-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}
.hero__visual {
  position: relative;
  padding-left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .hero__visual {
    display: none;
  }
}
.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
}
.hero__img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.hero__img-wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-top: 4px solid #f07020;
  border-right: 4px solid #f07020;
  border-radius: 0 8px 0 0;
  z-index: 2;
}
.hero__img-wrap::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border-bottom: 4px solid #1e4d8c;
  border-left: 4px solid #1e4d8c;
  border-radius: 0 0 0 8px;
  z-index: 2;
}
.hero__exp-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #f07020;
  padding: 1rem 1.4rem;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  z-index: 4;
}
.hero__exp-badge .exp-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.03em;
}
.hero__exp-badge .exp-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 20, 24, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 5;
}
@media (max-width: 768px) {
  .hero__stats {
    position: relative;
  }
}
.hero__stats .stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero__stats .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hero__stats .stat-item {
  padding: 1.4rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}
.hero__stats .stat-item:last-child {
  border-right: none;
}
.hero__stats .stat-item .stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: #f07020;
  line-height: 1;
  display: block;
}
.hero__stats .stat-item .stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.3rem;
  display: block;
}

.services {
  padding: 7rem 0 6rem;
  background: #f4f5f7;
  position: relative;
}
.services__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.services__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #111418;
  margin-bottom: 1rem;
}
.services__title::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f07020;
  margin-bottom: 1.2rem;
  margin: 0 auto 1rem;
}
.services__sub {
  color: #8a9ab0;
  font-size: 1rem;
  line-height: 1.7;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: #111418;
}
@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__card {
  position: relative;
  background: #ffffff;
  padding: 3rem 2.2rem 2.8rem;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.services__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f07020;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a2030;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.services__card:hover {
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.services__card:hover::before {
  opacity: 1;
}
.services__card:hover::after {
  transform: scaleX(1);
}
.services__card:hover .service__icon {
  background: #f07020;
  color: #ffffff;
}
.services__card:hover .service__name {
  color: #ffffff;
}
.services__card:hover .service__desc {
  color: rgba(255, 255, 255, 0.6);
}
.services__card:hover .service__link {
  color: #f07020;
  opacity: 1;
}
.services__card > * {
  position: relative;
  z-index: 1;
}
.services .service__icon {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background: rgba(30, 77, 140, 0.08);
  color: #1e4d8c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.services .service__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #111418;
  margin-bottom: 0.9rem;
  line-height: 1.15;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.services .service__desc {
  font-size: 0.9rem;
  color: #8a9ab0;
  line-height: 1.7;
  margin-bottom: 1.6rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.services .service__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e4d8c;
  opacity: 0.7;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.services .service__link i {
  font-size: 0.9rem;
}

.about {
  padding: 7rem 0;
  background: #ffffff;
  overflow: hidden;
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 992px) {
  .about .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about__visual {
  position: relative;
}
@media (max-width: 992px) {
  .about__visual {
    order: -1;
  }
}
.about__imgs {
  position: relative;
  height: 520px;
}
@media (max-width: 768px) {
  .about__imgs {
    height: 340px;
  }
}
.about__imgs .img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 88%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.about__imgs .img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 55%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 6px solid #ffffff;
}
.about__float-badge {
  position: absolute;
  top: 30px;
  left: 0;
  background: #1e4d8c;
  color: #ffffff;
  padding: 1.2rem 1.6rem;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.about__float-badge .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.about__float-badge .label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
.about__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #111418;
  margin-bottom: 1.4rem;
}
.about__title::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f07020;
  margin-bottom: 1.2rem;
}
.about__text {
  color: rgb(107.556122449, 127.7193877551, 155.443877551);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #111418;
}
.about__feature i {
  font-size: 1.1rem;
  color: #f07020;
  flex-shrink: 0;
}
.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #1e4d8c;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 4px;
  margin-top: 1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.about__btn:hover {
  background: rgb(22.8, 58.52, 106.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 77, 140, 0.35);
}

.why-us {
  padding: 7rem 0;
  background: #1a2030;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(30, 77, 140, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 77, 140, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.why-us__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}
.why-us__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 1rem;
}
.why-us__title::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f07020;
  margin-bottom: 1.2rem;
  margin: 0 auto 1rem;
}
.why-us__sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }
}
.why-us__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 2.4rem 2rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-us__item:hover {
  background: rgba(30, 77, 140, 0.15);
  border-color: rgba(30, 77, 140, 0.4);
  transform: translateY(-4px);
}
.why-us__item:hover .why-icon {
  background: #f07020;
}
.why-us .why-icon {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background: rgba(240, 112, 32, 0.15);
  color: #f07020;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-us .why-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 0.7rem;
}
.why-us .why-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.gallery {
  padding: 7rem 0;
  background: #ffffff;
}
.gallery__head {
  max-width: 560px;
  margin-bottom: 3.5rem;
}
.gallery__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #111418;
  margin-bottom: 0.8rem;
}
.gallery__title::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f07020;
  margin-bottom: 1.2rem;
}
.gallery__sub {
  color: #8a9ab0;
  font-size: 1rem;
  line-height: 1.6;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 1rem;
}
@media (max-width: 992px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery__item:nth-child(1) {
  grid-column: 1/6;
  grid-row: 1/3;
}
.gallery__item:nth-child(2) {
  grid-column: 6/9;
  grid-row: 1/2;
}
.gallery__item:nth-child(3) {
  grid-column: 9/13;
  grid-row: 1/2;
}
.gallery__item:nth-child(4) {
  grid-column: 6/10;
  grid-row: 2/4;
}
.gallery__item:nth-child(5) {
  grid-column: 10/13;
  grid-row: 2/3;
}
.gallery__item:nth-child(6) {
  grid-column: 1/4;
  grid-row: 3/4;
}
.gallery__item:nth-child(7) {
  grid-column: 4/6;
  grid-row: 3/4;
}
.gallery__item:nth-child(8) {
  grid-column: 10/13;
  grid-row: 3/4;
}
@media (max-width: 992px) {
  .gallery__item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}
.gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img {
  transform: scale(1.06);
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 32, 48, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery__overlay span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.testimonials {
  padding: 7rem 0;
  background: #f4f5f7;
}
.testimonials__head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}
.testimonials__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #111418;
  margin-bottom: 0.8rem;
}
.testimonials__title::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f07020;
  margin-bottom: 1.2rem;
  margin: 0 auto 1rem;
}
.testimonials__sub {
  color: #8a9ab0;
  font-size: 1rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
.testimonials__card {
  background: #ffffff;
  border-left: 4px solid #f07020;
  padding: 2.2rem 2rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonials__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}
.testimonials__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}
.testimonials__stars i {
  color: #f07020;
  font-size: 0.9rem;
}
.testimonials__quote {
  font-size: 0.95rem;
  color: rgb(101.893877551, 122.5306122449, 150.906122449);
  line-height: 1.75;
  margin-bottom: 1.6rem;
  font-style: italic;
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f07020;
  flex-shrink: 0;
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: #1e4d8c;
}
.testimonials__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111418;
  display: block;
  margin-bottom: 2px;
}
.testimonials__loc {
  font-size: 0.78rem;
  color: #8a9ab0;
  letter-spacing: 0.06em;
}

.cta-banner {
  position: relative;
  background: #1e4d8c;
  padding: 5.5rem 0;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: #f07020;
  clip-path: polygon(0 0, 85% 0, 70% 100%, 0 100%);
}
@media (max-width: 992px) {
  .cta-banner::before {
    width: 100%;
    height: 40%;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 85%);
  }
}
.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 992px) {
  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }
}
.cta-banner__left {
  flex: 1;
}
.cta-banner__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: 0.03em;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 0.8rem;
}
.cta-banner__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.cta-banner__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cta-banner__right {
    flex-direction: column;
    gap: 1rem;
  }
}
.cta-banner__phone {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.cta-banner__phone .phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
}
.cta-banner__phone .phone-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}
.cta-banner__phone .phone-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  color: #1e4d8c;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-banner__btn:hover {
  background: #f07020;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.contact {
  padding: 7rem 0;
  background: #111418;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 77, 140, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .contact .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.contact__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.03em;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.contact__title::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f07020;
  margin-bottom: 1.2rem;
}
.contact__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(240, 112, 32, 0.12);
  color: #f07020;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact__detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 3px;
}
.contact__detail-value {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
}
.contact__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 3rem 2.6rem;
}
@media (max-width: 768px) {
  .contact__form {
    padding: 2rem 1.4rem;
  }
}
.contact__form-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 0.4rem;
}
.contact__form-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .contact .form-row {
    grid-template-columns: 1fr;
  }
}
.contact .form-group {
  margin-bottom: 1rem;
}
.contact .form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}
.contact .form-group input, .contact .form-group select, .contact .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact .form-group input::placeholder, .contact .form-group select::placeholder, .contact .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.contact .form-group input::-webkit-input-placeholder, .contact .form-group select::-webkit-input-placeholder, .contact .form-group textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.contact .form-group input::-moz-placeholder, .contact .form-group select::-moz-placeholder, .contact .form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.contact .form-group input:focus, .contact .form-group select:focus, .contact .form-group textarea:focus {
  border-color: #f07020;
  background: rgba(255, 255, 255, 0.07);
}
.contact .form-group input option, .contact .form-group select option, .contact .form-group textarea option {
  background: #1a2030;
  color: #ffffff;
}
.contact .form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.contact__submit {
  width: 100%;
  background: #f07020;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  margin-top: 0.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.contact__submit:hover {
  background: rgb(242.5714285714, 136.5142857143, 70.2285714286);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 112, 32, 0.4);
}

.site-footer {
  background: #111418;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__main {
  padding: 4.5rem 0 3rem;
}
.site-footer__main .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 992px) {
  .site-footer__main .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .site-footer__main .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.site-footer .footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.site-footer .footer-brand .brand-logo img {
  height: 44px;
}
.site-footer .footer-brand .brand-logo .brand-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.site-footer .footer-brand .brand-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}
.site-footer .footer-brand .social-links {
  display: flex;
  gap: 0.6rem;
}
.site-footer .footer-brand .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer .footer-brand .social-links a:hover {
  background: #f07020;
  border-color: #f07020;
  color: #ffffff;
  transform: translateY(-2px);
}
.site-footer .footer-col .col-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.site-footer .footer-col .col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #f07020;
}
.site-footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.site-footer .footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.site-footer .footer-col ul li a::before {
  content: "›";
  color: #f07020;
  font-size: 1rem;
  line-height: 1;
}
.site-footer .footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}
.site-footer .footer-col .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.site-footer .footer-col .footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.site-footer .footer-col .footer-contact li i {
  color: #f07020;
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.site-footer .footer-col .footer-contact li span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 0;
}
.site-footer__bottom .bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 768px) {
  .site-footer__bottom .bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
.site-footer__bottom .copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}
.site-footer__bottom .copy span {
  color: #f07020;
}
.site-footer__bottom .bottom-links {
  display: flex;
  gap: 1.4rem;
}
.site-footer__bottom .bottom-links a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}
.site-footer__bottom .bottom-links a:hover {
  color: #ffffff;
}

/* ============================================
   BOOKING PAGE – HERO
   ============================================ */
.booking-hero {
  background: #1a2030;
  padding: 120px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.booking-hero .section-label {
  display: inline-block;
  margin-bottom: 12px;
}
.booking-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.booking-hero__sub {
  font-family: 'DM Sans', sans-serif;
  color: #8a9ab0;
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================
   BOOKING LAYOUT
   ============================================ */
.booking-section {
  background: #111418;
  padding: 60px 0 100px;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CALENDAR CARD
   ============================================ */
.cal-card {
  background: #1a2030;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}

/* Header row */
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #1e4d8c;
}
.cal-month-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.cal-nav {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cal-nav:hover:not(:disabled) {
  background: rgba(255,255,255,0.25);
}
.cal-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Legend */
.cal-legend {
  display: flex;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #8a9ab0;
  font-weight: 500;
}
.leg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.leg-available .leg-dot { background: #22c55e; }
.leg-booked   .leg-dot { background: #ef4444; }
.leg-selected .leg-dot { background: #f07020; }

/* Table wrapper */
.cal-table-wrap {
  padding: 12px 12px 4px;
  overflow-x: auto;
}
.cal-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  font-family: 'DM Sans', sans-serif;
  min-width: 280px;
}
.cal-table thead th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9ab0;
  padding: 6px 2px;
  text-align: center;
}

/* Cells */
.cal-cell {
  text-align: center;
  vertical-align: top;
  padding: 2px;
  border-radius: 8px;
}
.cal-empty {
  background: transparent;
}
.cal-day-num {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

/* Available cell */
.cal-available {
  background: rgba(34,197,94,0.07);
}
.cal-day-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 8px 4px 6px;
  background: none;
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 6px;
  color: #e0e8f0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.cal-day-btn:hover {
  background: rgba(34,197,94,0.18);
  border-color: #22c55e;
  transform: translateY(-1px);
  color: #ffffff;
}

/* Booked cell */
.cal-booked {
  background: rgba(239,68,68,0.07);
}
.cal-booked .cal-day-num {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 4px 4px;
  color: #8a9ab0;
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 6px;
  min-height: 52px;
}

/* Disabled / closed cell */
.cal-disabled .cal-day-num {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 8px 4px 4px;
  color: rgba(138,154,176,0.35);
  min-height: 52px;
}

/* Today highlight */
.cal-today .cal-day-btn,
.cal-today.cal-booked .cal-day-num,
.cal-today.cal-disabled .cal-day-num {
  outline: 2px solid #1e4d8c;
  outline-offset: -2px;
}

/* Selected cell */
.cal-selected .cal-day-btn {
  background: #f07020 !important;
  border-color: #f07020 !important;
  color: #ffffff !important;
  font-weight: 700;
}

/* Badges */
.cal-badge {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 1px 4px;
  margin-top: 3px;
}
.cal-badge.booked  { background: rgba(239,68,68,0.2);  color: #ef4444; }
.cal-badge.closed  { background: rgba(138,154,176,0.15); color: #8a9ab0; }

/* Loading row */
.cal-loading {
  padding: 32px;
  text-align: center;
  color: #8a9ab0;
  font-family: 'DM Sans', sans-serif;
}
@keyframes spin { to { transform: rotate(360deg); } }
.spinning { display: inline-block; animation: spin 0.8s linear infinite; }

/* Note below calendar */
.cal-note {
  padding: 12px 20px 16px;
  font-size: 0.78rem;
  color: #8a9ab0;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   BOOKING FORM CARD
   ============================================ */
.booking-form-card {
  background: #1a2030;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}

/* Placeholder */
.booking-placeholder {
  padding: 60px 32px;
  text-align: center;
}
.placeholder-icon {
  width: 72px;
  height: 72px;
  background: rgba(30,77,140,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #1e4d8c;
}
.booking-placeholder h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.booking-placeholder p {
  color: #8a9ab0;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
}

/* Form area */
.booking-form {
  padding: 24px 28px 32px;
}

/* Selected date banner */
.selected-date-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(240,112,32,0.1);
  border: 1px solid rgba(240,112,32,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f07020;
}
.selected-date-banner i {
  font-size: 1.1rem;
}
.selected-date-banner span {
  flex: 1;
}
.change-date-btn {
  background: none;
  border: 1px solid rgba(240,112,32,0.4);
  color: #f07020;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.change-date-btn:hover {
  background: rgba(240,112,32,0.15);
}

/* Error */
.booking-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 16px;
}

/* Submit button */
.booking-submit {
  width: 100%;
  padding: 14px 24px;
  background: #f07020;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.booking-submit:hover:not(:disabled) {
  background: #d9601a;
  transform: translateY(-1px);
}
.booking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success */
.booking-success {
  padding: 56px 32px;
  text-align: center;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(34,197,94,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  color: #22c55e;
}
.booking-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.booking-success p {
  color: #8a9ab0;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 10px;
}
.success-note {
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.success-note a {
  color: #f07020;
}

/* Active nav link */
.header__nav a.active {
  color: #f07020;
}

