@import url('https://db.onlinewebfonts.com/c/5b5fcc354ed196046001a2db207984fa?family=UTM+Avo');

/* ================================
   🎨 Root Variables & Typography
================================ */
:root {
  --primary: #75421b;
  --secondary: #FAF3EB;
  --light: #fff;
  --dark: #001426;
}

body{ overflow-x:hidden; }

h1, h2, .font-weight-bold { font-weight: 700 !important; }
h3, h4, .font-weight-semi-bold { font-weight: 600 !important; }
h5, h6, .font-weight-medium { font-weight: 500 !important; }

/* ================================
   🔘 Buttons
================================ */
.btn {
  font-weight: 600;
  transition: .5s;
}

.btn-primary { color: var(--light); }

.btn-square, .btn-sm-square, .btn-lg-square {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
}

.btn-square { width: 40px; height: 40px; }
.btn-sm-square { width: 30px; height: 30px; }
.btn-lg-square { width: 50px; height: 50px; }

/* ================================
   🧱 Borders
================================ */
.border-inner {
  position: relative;
}

.border-inner * { position: relative; z-index: 1; }

.border-inner::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--light);
  z-index: 0;
}

/* ================================
   🔝 Back To Top
================================ */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 0;
  display: none;
  border-radius: 0;
  z-index: 99;
}

/* ================================
   🧭 Navbar
================================ */
.navbar-dark .navbar-nav .nav-link {
  padding: 30px 15px;
  font-size: 13px !important;
  font-weight: 600;
  color: var(--light);
  transition: .5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 15px;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

/* ================================
   🖼️ Hero Slider
================================ */
.hero-slider,
.hero-slider .swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  width: 100%;
  height: 100vh;
  position: relative;
}

.hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slider .slide-content {
  position: relative;
  z-index: 2;
  color: var(--light);
  max-width: 800px;
  text-align: center;
  padding: 0 15px;
}

.hero-slider h1 {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
}

/* Swiper Controls */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: var(--light);
  transition: .3s;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  color: var(--primary);
}

.hero-slider .swiper-pagination-bullet {
  background: var(--light);
  opacity: .7;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider,
  .hero-slider .swiper,
  .hero-slider .swiper-wrapper,
  .hero-slider .swiper-slide { height: 60vh; }

  .hero-slider h1 { font-size: 2rem; }
  .hero-slider .slide-content p { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero-slider,
  .hero-slider .swiper,
  .hero-slider .swiper-wrapper,
  .hero-slider .swiper-slide { height: 30vh; }

  .hero-slider h1 { font-size: 1.5rem; }
}

/* ================================
   ▶️ Play Button
================================ */
.btn-play {
  position: relative;
  width: 16px;
  height: 26px;
  padding: 18px 20px 20px 28px;
  border: none;
  outline: none !important;
  border-radius: 50%;
  background: var(--light);
}

.btn-play::before,
.btn-play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.btn-play::before {
  animation: pulse-border 1.5s ease-out infinite;
  z-index: 0;
}

.btn-play::after { z-index: 1; transition: all .2s; }

.btn-play span {
  position: relative;
  z-index: 3;
  border-left: 16px solid var(--primary);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* ================================
   🎬 Video Modal
================================ */
#videoModal .modal-dialog {
  max-width: 800px;
  margin: 60px auto 0;
}

#videoModal .modal-body { padding: 0; }

#videoModal .close {
  position: absolute;
  top: -30px;
  right: 0;
  width: 30px;
  height: 30px;
  font-size: 30px;
  color: var(--light);
  background: #000;
  opacity: 1;
  z-index: 999;
}

/* ================================
   🏷️ Section Titles
================================ */
.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  background: var(--primary);
  transform: translateX(-50%);
}

.section-title::before { width: 60px; height: 10px; bottom: 0; }
.section-title::after { width: 180px; height: 2px; bottom: 4px; }

/* ================================
   💼 Service & Contact BG
================================ */
.service::after,
.contact::after {
  content: "";
  position: absolute;
  top: 135px;
  left: 0;
  width: 100%;
  height: calc(100% - 45px);
  background-size: cover;
  z-index: -1;
}

.service::after {
  background: linear-gradient(rgba(43,40,37,.9), rgba(43,40,37,.9)), url(../img/service.jpg) center no-repeat;
}

.contact::after {
  background: linear-gradient(rgba(43,40,37,.5), rgba(43,40,37,.5)), url(../img/bg.jpg) center no-repeat;
}

/* ================================
   🎁 Offer Section
================================ */
.bg-offer {
  background: linear-gradient(rgba(43,40,37,.9), rgba(43,40,37,.9)), url(../img/offer.jpg) center no-repeat;
  background-size: cover;
}

/* ================================
   👥 Team
================================ */
.team-item img {
  transition: .5s;
}

.team-item:hover img {
  transform: scale(1.1);
  filter: blur(5px);
}

.team-item .team-overlay {
  opacity: 0;
  transition: .5s;
}

.team-item:hover .team-overlay { opacity: 1; }

/* ================================
   💬 Testimonials
================================ */
.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 30px;
  height: 45px;
}

.testimonial-carousel .owl-dot {
  width: 10px;
  height: 25px;
  margin: 0 2px;
  background: #ddd;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  height: 45px;
  background: var(--primary);
}

.testimonial-carousel .owl-item .testimonial-item {
  opacity: .1;
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  opacity: 1;
}

/* ================================
   🌄 Background Images
================================ */
.bg-img {
  background: linear-gradient(rgba(43,40,37,.5), rgba(43,40,37,.5)), url(../images/bg.jpg) center no-repeat;
  background-size: cover;
}
.btn-use-coupon{
  border-radius: 5px;
}
.btn-use-coupon:hover{
  color: white !important;
}