@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

html,
body {
  overflow-x: hidden;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* {
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}
body {
  font-family: "Inter", sans-serif;
  background: #f4f7fb;
  color: #1a2a3a;
  line-height: 1.7;
  padding-top: 0;
}
a {
  text-decoration: none;
}
.container {
  max-width: 1200px;
}

.navbar-custom {
  background: #006400;
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #FF0000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: all 0.3s ease;
}
.navbar-custom.shrink {
  padding: 0.4rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.navbar-custom.shrink .navbar-brand img {
  height: 80px;
}
.navbar-custom.shrink .navbar-brand {
  font-size: 1.5rem;
}
.navbar-custom.shrink .nav-link {
  padding: 0.4rem 1.1rem;
  font-size: 0.9rem;
}

.page-wrapper {
  padding-top: 82px;
}

.navbar-custom .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.8rem;
  color: #FF0000;
  letter-spacing: -0.3px;
  transition: all 0.3s ease;
}
.navbar-custom .navbar-brand img {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}
.navbar-custom .navbar-brand .logo-text {
  color: #FF0000;
  font-weight: 800;
}
.navbar-custom .navbar-brand .logo-text span {
  color: #ffffff;
  font-weight: 300;
}
.navbar-custom .navbar-nav {
  gap: 0.3rem;
}

#mainNav.navbar-custom .navbar-nav .nav-item .nav-link {
  padding: 0.4rem 0.7rem;
  color: whitesmoke;
  font-weight: 400;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 0;
  position: relative;
  border-bottom: 2px solid transparent;
}

#mainNav.navbar-custom .navbar-nav {
  gap: 0;
}

#mainNav.navbar-custom .navbar-nav .nav-item {
  margin: 0;
}

.navbar-custom .nav-link.active {
  background: #FF0000;
  color: #006400 !important;
  font-weight: 600;
  border-bottom-color: #FF0000;
}

.navbar-custom .nav-link:hover {
  background: #FF0000;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 5px !important;
  border-bottom-color: #006400 !important;
}

.navbar-custom .dropdown-menu {
  background: #006400;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 0.5rem 0;
  margin-top: 0.2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  min-width: 220px;
}
.navbar-custom .dropdown-item {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.6rem 1.5rem;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}
.navbar-custom .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #FF0000;
  border-left-color: #FF0000;
  padding-left: 1.8rem;
}
.navbar-custom .dropdown-item i {
  width: 22px;
  color: #FF0000;
  margin-right: 10px;
  font-size: 0.9rem;
}
.navbar-custom .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.5);
}
.navbar-custom .nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
}

/* Optional: Add a subtle glow or pulse animation */
.navbar-custom .btn-warning {
    animation: gentlePulse 2s infinite;
}

@keyframes gentlePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

/* Or add a gradient background instead of solid yellow */
.navbar-custom .btn-warning {
    background: linear-gradient(135deg, #ffc107, #ffb300) !important;
    border: none !important;
    color: #1a1a1a !important;
}

/* ----- HERO SLIDER ----- */
.hero-slider-full {
  width: 100%;
  background: #006400;
  position: relative;
}

.hero-slider-full .owl-carousel .item {
  height: 75vh;
  max-height: 600px;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slider-full .item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 42, 59, 0.82) 0%,
    rgba(11, 42, 59, 0.2) 100%
  );
  z-index: 1;
}

.hero-slider-full .item .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem 3rem;
  max-width: 680px;
  margin-left: 6%;
  animation: fadeInUp 0.9s ease;
}

.hero-slider-full .item .hero-content h1 {
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.hero-slider-full .item .hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0.8rem 0 1.8rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  max-width: 520px;
}

.hero-slider-full .item .hero-content .btn-hero {
  background: #FF0000;
  color: #ffffff;
  border: none;
  padding: 0.7rem 2.6rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 12px 28px rgba(247, 201, 72, 0.25);
  transition: 0.25s;
}

.hero-slider-full .item .hero-content .btn-hero:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.hero-slider-full .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.hero-slider-full .owl-theme .owl-nav [class*="owl-"] {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.25s;
  margin: 0;
}

.hero-slider-full .owl-theme .owl-nav [class*="owl-"]:hover {
  background: #FF0000;
  color: #006400;
  border-color: #FF0000;
  transform: scale(1.05);
}

.hero-slider-full .owl-theme .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.hero-slider-full .owl-theme .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.4);
  width: 12px;
  height: 12px;
  margin: 0 5px;
}

.hero-slider-full .owl-theme .owl-dots .owl-dot.active span {
  background: #FF0000;
  box-shadow: 0 0 0 4px rgba(247, 201, 72, 0.2);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- SECTION TITLES ----- */
.section-title {
  font-weight: 700;
  color: #006400;
  position: relative;
  padding-bottom: 0.6rem;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: #FF0000;
  border-radius: 0;
}

/* ----- ABOUT ----- */
.about-block {
  background: #ffffff;
  border-radius: 0;
  padding: 2.8rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid #eaf0f5;
}

.about-block .big-number {
  font-size: 3.6rem;
  font-weight: 800;
  color: #FF0000;
  line-height: 1;
  margin-right: 0.3rem;
}

/* ----- SERVICES CARDS ----- */
.service-card {
  background: #ffffff;
  border-radius: 0;
  padding: 2.2rem 1.6rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  border: 1px solid #eaf0f5;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #FF0000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: #FF0000;
}

.service-card .icon-wrap {
  background: #fcf3db;
  width: 76px;
  height: 76px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: #006400;
  font-size: 2rem;
  transition: 0.3s;
}

.service-card:hover .icon-wrap {
  background: #FF0000;
  transform: scale(1.05);
}

.service-card h5 {
  font-weight: 700;
  color: #006400;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #5a6b7a;
  font-size: 0.95rem;
}

/* ----- PROPERTY CARDS ----- */
.property-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2f6;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.property-card .card-img-top {
  height: 210px;
  object-fit: cover;
  background: #d9e2ec;
}

.property-card .card-body {
  padding: 1.2rem 1.2rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-card .price {
  font-weight: 700;
  color: #006400;
  font-size: 1.3rem;
}

.property-card .price small {
  font-weight: 400;
  color: #64748b;
  font-size: 0.8rem;
}

.badge-feat {
  background: #FF0000;
  color: #ffffff;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 0;
  font-size: 0.7rem;
  letter-spacing: 0.2px;
  border-radius: 5px;
}

.btn-outline-gold {
  border: 1px solid #FF0000;
  color: #006400;
  border-radius: 0;
  padding: 0.4rem 1.4rem;
  font-weight: 600;
  transition: 0.15s;
}

.btn-outline-gold:hover {
  background: #FF0000;
  color: #ffffff;
  border-color: #FF0000;
}

.property-meta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 0.5rem 0 0.8rem;
  font-size: 0.9rem;
  color: #475569;
}

.property-meta span i {
  width: 20px;
  color: #FF0000;
}

/* ----- GALLERY CAROUSEL ----- */
.gallery-slider .owl-carousel .item {
  padding: 10px;
}

.gallery-slider .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
}

.gallery-slider .gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-slider .gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-slider .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 42, 59, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  flex-direction: column;
  gap: 8px;
}

.gallery-slider .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-slider .gallery-item .gallery-overlay i {
  font-size: 2.5rem;
}

.gallery-slider .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 10;
}

.gallery-slider .owl-theme .owl-nav [class*="owl-"] {
  pointer-events: auto;
  background: rgba(11, 42, 59, 0.7);
  color: #fff;
  border-radius: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.25s;
  margin: 0;
}

.gallery-slider .owl-theme .owl-nav [class*="owl-"]:hover {
  background: #FF0000;
  color: #006400;
}

.gallery-slider .owl-theme .owl-dots .owl-dot span {
  background: #b0c7d9;
  width: 10px;
  height: 10px;
}

.gallery-slider .owl-theme .owl-dots .owl-dot.active span {
  background: #FF0000;
}

/* ----- LIGHTBOX MODAL ----- */
.lightbox-modal .modal-content {
  background: rgba(0, 0, 0, 0.92);
  border: none;
  border-radius: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-modal .modal-body {
  padding: 20px;
  text-align: center;
}

.lightbox-modal .modal-body img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.lightbox-modal .btn-close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1050;
  transition: 0.2s;
}

.lightbox-modal .btn-close-lightbox:hover {
  color: #FF0000;
  transform: rotate(90deg);
}

.lightbox-modal .modal-dialog {
  max-width: 100%;
  margin: 0;
}

/* ----- FOOTER ----- */
.footer-custom {
  background: #006400;
  color: #cfdde8;
  padding: 3.5rem 0 1.5rem;
  border-top: 4px solid #FF0000;
}

.footer-custom h5,
.footer-custom h6 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-custom a {
  color: #b0c7d9;
  transition: 0.2s;
}

.footer-custom a:hover {
  color: #FF0000;
}

.footer-custom .footer-link {
  display: block;
  padding: 0.2rem 0;
  color: #b0c7d9;
}

.footer-custom .footer-link:hover {
  color: #FF0000;
  padding-left: 5px;
}

.footer-custom .social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 0;
  margin-right: 8px;
  transition: 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-custom .social-icon:hover {
  background: #FF0000;
  color: #006400;
  transform: translateY(-3px);
}

.footer-custom .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.footer-custom .contact-item i {
  width: 24px;
  color: #FF0000;
  font-size: 1.1rem;
}

.footer-custom .newsletter-input {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0.6rem 1rem;
}

.footer-custom .newsletter-input::placeholder {
  color: #8a9fb0;
}

.footer-custom .btn-subscribe {
  background: #FF0000;
  color: #006400;
  border-radius: 0;
  font-weight: 700;
  padding: 0.6rem 1.8rem;
  border: none;
  transition: 0.2s;
}

.footer-custom .btn-subscribe:hover {
  background: #ffffff;
  color: #006400;
}

.footer-custom .footer-divider {
  border-color: rgba(255, 255, 255, 0.06);
  margin: 2rem 0 1.5rem;
}

.footer-custom .copyright {
  color: #8a9fb0;
  font-size: 0.9rem;
}

/* --- JUST MODIFIED THE MEDIA QUERY --- */
@media (max-width: 768px) {
  .page-wrapper {
    padding-top: 72px;
  }

  .hero-slider-full .owl-carousel .item {
    height: 60vh;
    min-height: 320px;
  }

  .hero-slider-full .item .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-slider-full .item .hero-content {
    margin-left: 0;
    padding: 1.5rem;
  }

  .hero-slider-full .owl-theme .owl-nav {
    padding: 0 8px;
  }

  .hero-slider-full .owl-theme .owl-nav [class*="owl-"] {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .gallery-slider .gallery-item img {
    height: 200px;
  }

  .lightbox-modal .modal-body img {
    max-height: 70vh;
  }

  .navbar-custom .dropdown-menu {
    background: rgba(11, 42, 59, 0.95);
    border: none;
    padding-left: 1rem;
  }

  .navbar-custom .dropdown-item {
    padding: 0.5rem 1rem;
  }

  .navbar-custom .nav-link {
    border-bottom: none;
    padding: 0.5rem 0.8rem;
  }

  .navbar-custom .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: none;
  }

  .navbar-custom.shrink .navbar-brand img {
    height: 32px;
  }

  .navbar-custom.shrink .navbar-brand {
    font-size: 1.3rem;
  }

  .navbar-custom .navbar-collapse {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.service-card .btn-outline-gold {
  border: 1px solid #FF0000;
  color: #006400;
  border-radius: 0;
  padding: 0.4rem 1.6rem;
  font-weight: 600;
  transition: 0.15s;
  background: transparent;
  font-size: 0.9rem;
  display: inline-block;
  text-decoration: none;
}

.service-card .btn-outline-gold:hover {
  background: #FF0000;
  color: #ffffff;
  border-color: #FF0000;
}

/* Desktop hover only */
@media (min-width: 992px) {
    .navbar-custom .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top:0;
    }
}