* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #e0c495;
  --dark-gold: #d4af37;
  --gold: #e0c495;
  --black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #444;
  --white: #ffffff;
  --off-white: #f8f8f8;
}

body {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  color: var(--white);
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Luxury Loading Screen */
.luxury-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
  color: var(--gold);
}

.diamond-loader {
  width: 60px;
  height: 60px;
  border: 3px solid var(--gold);
  transform: rotate(45deg);
  margin: 0 auto 20px;
  animation: diamondPulse 2s infinite;
}

@keyframes diamondPulse {
  0%, 100% { 
    transform: rotate(45deg) scale(1);
    border-color: var(--gold);
  }
  50% { 
    transform: rotate(45deg) scale(1.1);
    border-color: var(--light-gold);
  }
}

.loader-content p {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.loader-content span {
  font-size: 1rem;
  opacity: 0.8;
  letter-spacing: 3px;
}

/* Enhanced Luxury Navbar */
.luxury-navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 196, 149, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.logo span {
  font-weight: 300;
  color: var(--light-gold);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 12px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  white-space: nowrap;
}

.nav-links li a i {
  font-size: 1rem;
  opacity: 0.8;
}

.nav-links li a:hover {
  background: rgba(224, 196, 149, 0.1);
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-links li a.active {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  font-weight: 600;
}

.nav-cta {
  margin-left: 15px;
}

.nav-concierge-btn {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black) !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(224, 196, 149, 0.3);
}

.nav-concierge-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(224, 196, 149, 0.4);
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
}

.luxury-btn {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(224, 196, 149, 0.3);
}

.luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(224, 196, 149, 0.4);
  color: var(--black);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Testimonials Hero Section */
.testimonials-hero {
  position: relative;
  height: 60vh;
  background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9)), 
              url('./img/Noorvia-hijab-hero-banner(2).png') center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(224, 196, 149, 0.1), transparent);
  z-index: 1;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}

.luxury-title {
  font-size: 4rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.luxury-subtitle {
  font-size: 1.5rem;
  color: var(--light-gold);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 5px;
}

.stat-label {
  color: var(--light-gold);
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Luxury Reviews Section */
.luxury-reviews {
  padding: 120px 40px;
  background: var(--dark-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.luxury-section-title {
  font-size: 4rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.divider-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-divider i {
  color: var(--gold);
  font-size: 1.2rem;
}

.luxury-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Luxury Review Cards */
.luxury-review-card {
  background: linear-gradient(145deg, var(--medium-gray), var(--dark-gray));
  border: 1px solid rgba(224, 196, 149, 0.3);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.5s ease;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.luxury-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--dark-gold));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.luxury-review-card:hover::before {
  transform: scaleX(1);
}

.luxury-review-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(224, 196, 149, 0.15);
}

.featured-review {
  border: 2px solid var(--gold);
  background: linear-gradient(145deg, rgba(224, 196, 149, 0.05), var(--dark-gray));
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.reviewer-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--black);
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 5px;
}

.reviewer-location {
  color: var(--light-gold);
  font-size: 0.9rem;
}

.review-rating {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-rating i {
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.star-pop {
  animation: starPop 0.6s ease-out;
}

@keyframes starPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.rating-text {
  color: var(--light-gold);
  font-weight: 500;
}

.review-text {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(224, 196, 149, 0.2);
}

.review-date {
  color: var(--light-gold);
  font-size: 0.9rem;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
}

/* CTA Section */
.reviews-cta {
  padding: 100px 40px;
  background: linear-gradient(135deg, rgba(224, 196, 149, 0.1), rgba(212, 175, 55, 0.05));
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 3rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 1.3rem;
  color: var(--light-gold);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.primary-btn {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(224, 196, 149, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(224, 196, 149, 0.4);
}

.secondary-btn {
  background: rgba(224, 196, 149, 0.1);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.secondary-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* Enhanced Luxury Footer */
.luxury-footer {
  background: var(--black);
  border-top: 1px solid rgba(224, 196, 149, 0.2);
  padding: 80px 40px 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.brand-tagline {
  color: var(--light-gold);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social .social-icon {
  width: 45px;
  height: 45px;
  background: rgba(224, 196, 149, 0.1);
  border: 1px solid rgba(224, 196, 149, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-social .social-icon:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid rgba(224, 196, 149, 0.3);
  padding-bottom: 10px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: var(--light-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.footer-links-list a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-links-list a i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.concierge-link {
  color: var(--gold) !important;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(224, 196, 149, 0.2);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-concierge-cta {
  text-align: center;
}

.footer-concierge-btn {
  font-size: 1.1rem;
  padding: 16px 35px;
}

.copyright {
  color: var(--light-gold);
  font-size: 1rem;
  text-align: center;
}

.copyright i {
  color: #ff6b6b;
  margin: 0 5px;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .luxury-title {
    font-size: 3.5rem;
  }
  
  .luxury-section-title {
    font-size: 3.5rem;
  }
  
  .luxury-review-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .hero-stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    height: 70px;
  }
  
  .logo {
    font-size: 2.2rem;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-top: 1px solid rgba(224, 196, 149, 0.2);
    display: none;
  }
  
  .nav-links.show {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links li a {
    padding: 15px 20px;
    border-radius: 8px;
    justify-content: flex-start;
    font-size: 1.1rem;
  }
  
  .nav-cta {
    margin: 20px 0 0 0;
    width: 100%;
  }
  
  .nav-cta .luxury-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .testimonials-hero {
    height: 50vh;
    margin-top: 70px;
  }
  
  .luxury-title {
    font-size: 2.8rem;
  }
  
  .luxury-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .luxury-reviews {
    padding: 80px 20px;
  }
  
  .luxury-section-title {
    font-size: 2.5rem;
  }
  
  .luxury-review-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .reviews-cta {
    padding: 80px 20px;
  }
  
  .cta-container h2 {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .luxury-footer {
    padding: 60px 20px 30px;
  }
}

@media (max-width: 480px) {
  .luxury-title {
    font-size: 2.2rem;
  }
  
  .testimonials-hero {
    height: 45vh;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .luxury-review-card {
    padding: 20px;
  }
  
  .review-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .review-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-concierge-btn {
    width: 100%;
    justify-content: center;
  }
}