@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --color-gold: #C9A227;
  --color-gold-hover: #b08d1f;
  --color-black: #111111;
  --color-white: #FFFFFF;
  --color-light-gray: #F8F8F8;
  --color-dark-gray: #333333;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Layout */
  --navbar-height: 80px;
  --transition: all 0.3s ease;
  --border-radius: 4px;
}

/* Global Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark-gray);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  color: var(--color-gold);
}

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

/* Typography Utilities */
.text-gold { color: var(--color-gold) !important; }
.bg-gold { background-color: var(--color-gold) !important; }
.bg-black { background-color: var(--color-black) !important; }
.bg-light-gray { background-color: var(--color-light-gray) !important; }

/* Buttons */
.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: var(--transition);
}

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

.btn-outline-gold {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
}

.section-title p {
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background-color: var(--color-white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
  padding: 15px 0;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  animation: slideDown 0.5s ease-in-out;
}

@keyframes slideDown {
  from { top: -100px; }
  to { top: 0; }
}

.navbar-brand img {
  height: 85px;
  max-width: 100%;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-black);
  margin: 0 10px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

/* Hero Section */
.hero-banner {
  height: 90vh;
  min-height: 750px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-black);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.6);
  transition: transform 6s linear;
}

/* Ken Burns effect */
.swiper-slide-active .slide-bg {
  transform: scale(1.1);
}

.hero-content-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 4rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Daily Price Widget */
.daily-price-widget {
  background: linear-gradient(135deg, rgba(17,17,17,0.9) 0%, rgba(30,30,30,0.95) 100%);
  border: 1px solid rgba(201, 162, 39, 0.6);
  border-radius: 12px;
  padding: 20px 35px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 15px rgba(201,162,39,0.1);
  position: relative;
  overflow: hidden;
}

.daily-price-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-25deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3b30;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff3b30;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.rates-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.price-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.price-icon {
  width: 45px;
  height: 45px;
  background: rgba(201, 162, 39, 0.15);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.price-details {
  display: flex;
  flex-direction: column;
}

.price-title {
  color: #aaa;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.price-value {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.price-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(201, 162, 39, 0.5), transparent);
}

.last-updated {
  width: 100%;
  text-align: center;
  margin-top: 15px;
  font-size: 0.75rem;
  color: #bbb;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  letter-spacing: 1px;
}

.last-updated span {
  color: var(--color-gold);
  font-weight: 500;
}

/* Footer Logo Fix */
footer img[alt="New Jewel City Logo"] {
  filter: none !important;
  background-color: var(--color-white);
  padding: 10px 15px;
  border-radius: 8px;
  height: auto !important;
  max-height: 80px;
  width: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 4rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Product/Collection Cards */
.collection-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  height: 100%;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.collection-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: var(--color-light-gray);
}

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

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

.collection-info {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Services */
.service-box {
  background: var(--color-light-gray);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.service-box:hover {
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 80px 0 20px;
}

.footer-widget h4 {
  color: var(--color-gold);
  margin-bottom: 25px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-links a {
  color: #ccc;
  transition: var(--transition);
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--color-gold);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

/* Floating Elements */
.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 10px rgba(0,0,0,0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1);
}

.scroll-top {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  left: 40px;
  background-color: var(--color-gold);
  color: #FFF;
  border-radius: 4px;
  text-align: center;
  font-size: 20px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--color-black);
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--color-white);
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    margin-top: 15px;
    border-radius: var(--border-radius);
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 600px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .section-padding {
    padding: 50px 0;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
  .scroll-top {
    bottom: 20px;
    left: 20px;
  }
  .navbar-brand img {
    height: 60px;
  }
  .rates-container {
    gap: 15px;
  }
  .price-divider {
    height: 40px;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    min-height: 500px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .rates-container {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .price-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 162, 39, 0.5), transparent);
  }
  .daily-price-widget {
    padding: 15px 20px;
    width: 100%;
  }
  .price-item {
    width: 100%;
    justify-content: center;
  }
  .btn-gold, .btn-outline-gold {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .hero-content .mt-4 a {
    margin-right: 0 !important;
  }
  .section-title h2 {
    font-size: 2rem;
  }
}
