* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Montserrat", sans-serif;
  background-color: #ffffff;
  color: #0f172a;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

.gold-text {
  color: #d4af37;
}

.bg-dark-blue {
  background-color: #0f172a;
}

.btn-gold {
  background-color: #d4af37;
  color: #0f172a;
  border-radius: 40px;
  padding: 10px 28px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

.btn-gold:hover {
  background-color: #b8962c;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
  border: 2px solid #d4af37;
  background: transparent;
  color: #d4af37;
  border-radius: 40px;
  padding: 10px 28px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline-gold:hover {
  background: #d4af37;
  color: #0f172a;
}

/* Top Bar */
.top-bar {
  background: #0f172a;
  color: white;
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar a {
  color: #d4af37;
  text-decoration: none;
  margin-right: 20px;
  transition: 0.2s;
}
.top-bar a:hover {
  color: white;
}
.social-icons a {
  margin-left: 12px;
  color: #d4af37;
  font-size: 0.9rem;
}
.social-icons a:hover {
  color: white;
}

/* Sticky Navigation */
.navbar {
  background-color: transparent;
  transition: all 0.4s ease;
  padding: 38px 0;
  z-index: 1030;
}
.navbar.scrolled {
  background-color: #0f172a !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  top: 0px;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 1px;
  color: white !important;
}
.navbar-brand span {
  color: #d4af37;
}
.fixed-top {
  position: fixed;
  top: 30px;
  right: 0;
  left: 0;
  z-index: 1030;
}
.nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 8px;
  transition: 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: #d4af37 !important;
}
.navbar .btn-gold {
  padding: 6px 22px;
}

/* Hero */
.hero {
  background:
    linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.6)),
    url("https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1600")
      center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.feature-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
}
.text-white-hero {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
    padding-top: 65px;
}

/* Section Heading */
section{
  overflow: hidden;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.section-title:after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #d4af37;
  margin: 12px auto 0;
  border-radius: 3px;
}
.service-card,
.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.3s;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  border-color: #d4af37;
}
.service-icon {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 20px;
}

/* gallery */
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Testimonial carousel */
.testimonial-card {
  background: #f8f9fa;
  border-radius: 24px;
  padding: 30px;
  margin: 20px 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #0f172a;
  border-radius: 50%;
  padding: 20px;
}

/* FAQ */
.accordion-button:not(.collapsed) {
  background-color: #0f172a;
  color: #d4af37;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: #d4af37;
}

/* contact & map */
.contact-info {
  background: #f8fafe;
  padding: 30px;
  border-radius: 24px;
  height: 100%;
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  border: 0;
}

/* floating whatsapp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  line-height: 60px;
  z-index: 1040;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}
.whatsapp-float:hover {
  background: #128c7e;
  color: white;
  transform: scale(1.05);
}

footer {
  background: #0f172a;
  color: #adb7c9;
}
footer h5 {
  color: white;
  margin-bottom: 20px;
}
footer a {
  color: #d4af37;
  text-decoration: none;
}
footer a:hover {
  color: white;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .top-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .navbar-brand {
    font-size: 1.3rem;
  }
}
@media(max-width:768){
  .fixed-top {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    z-index: 1030;
}
}
@media(min-width:768){
  .fixed-top {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    z-index: 1030;
}
}
