:root {
  --primary-dark-blue: #0B1F3A;
  --luxury-gold: #D4AF37;
  --white: #FFFFFF;
  --light-bg: #F8F9FA;
  --dark-text: #1E293B;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Typography Utility */
.text-gold {
  color: var(--luxury-gold) !important;
}

.text-dark-blue {
  color: var(--primary-dark-blue) !important;
}

.bg-dark-blue {
  background-color: var(--primary-dark-blue) !important;
}

.bg-gold {
  background-color: var(--luxury-gold) !important;
}

/* Button Styles */
.btn-gold {
  background-color: var(--luxury-gold);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  border: 2px solid var(--luxury-gold);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--luxury-gold);
}

.btn-outline-light {
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header & Navigation */
.navbar {
  transition: all 0.4s ease;
  padding: 20px 0;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--primary-dark-blue);
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 50px;
  transition: all 0.3s ease;
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 15px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--luxury-gold);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover, .nav-link.active {
  color: var(--luxury-gold) !important;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.9) 0%, rgba(11, 31, 58, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  padding: 100px 0;
}

.about-img-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img-wrapper img {
  width: 100%;
  transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.05);
}

.about-features li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.about-features i {
  color: var(--luxury-gold);
  margin-right: 10px;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--luxury-gold);
}

.service-img-wrapper {
  overflow: hidden;
  height: 250px;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-dark-blue);
  color: var(--luxury-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-top: -60px;
  position: relative;
  margin-bottom: 20px;
  border: 4px solid var(--white);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--luxury-gold);
  color: var(--white);
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 100px 0;
  background-color: var(--primary-dark-blue);
  color: var(--white);
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--luxury-gold);
  margin-bottom: 20px;
}

.counter-value {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--luxury-gold);
  margin-bottom: 10px;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 24px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 31, 58, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-overlay i {
  color: var(--luxury-gold);
  font-size: 2rem;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

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

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

.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 15px;
  text-align: center;
}

.testimonial-card .quote-icon {
  font-size: 2rem;
  color: var(--luxury-gold);
  opacity: 0.5;
  margin-bottom: 20px;
}

.testimonial-card .stars {
  color: #FFD700;
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  color: var(--white);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 31, 58, 0.85);
}

.cta-content {
  position: relative;
  z-index: 1;
}

/* Inner Pages Hero */
.inner-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 0;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 31, 58, 0.7);
}

.inner-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.inner-hero .breadcrumb {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 0;
  justify-content: center;
}

.inner-hero .breadcrumb-item a {
  color: var(--luxury-gold);
  text-decoration: none;
}

.inner-hero .breadcrumb-item.active {
  color: var(--white);
}

.inner-hero .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}

/* Contact Info Card */
.contact-info-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 24px;
  color: var(--luxury-gold);
  margin-right: 20px;
  width: 30px;
  text-align: center;
}

/* Contact Form */
.form-control, .form-select {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.form-control:focus, .form-select:focus {
  border-color: var(--luxury-gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Map Section */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

/* Footer */
footer {
  background-color: var(--primary-dark-blue);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
}

.footer-widget h4 {
  color: var(--white);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--luxury-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--luxury-gold);
  padding-left: 5px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--luxury-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  background-color: #08172b;
  padding: 20px 0;
  margin-top: 60px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  color: #fff;
  background-color: #128C7E;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
  .navbar {
    background-color: var(--primary-dark-blue) !important;
    padding: 10px 0;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .inner-hero h1 {
    font-size: 2.5rem;
  }
  .counter-value {
    font-size: 2rem;
  }
}
