* {
  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 - Fixed Private Concierge */
.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.8rem;
  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);
}

/* Luxury Hero Banner */
.luxury-hero-banner {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), 
              url('./img/Noorvia-hijab-hero-banner(2).png') center/cover fixed;
  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;
}

.luxury-hero-content {
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}

.luxury-title {
  font-size: 5rem;
  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);
  letter-spacing: 2px;
}

.luxury-subtitle {
  font-size: 1.8rem;
  color: var(--light-gold);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Luxury Products Section */
.luxury-products {
  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-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-product-card {
  background: linear-gradient(145deg, var(--medium-gray), var(--dark-gray));
  border: 1px solid rgba(224, 196, 149, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.luxury-product-card:hover {
  transform: translateY(-15px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(224, 196, 149, 0.2);
}

.product-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;
}

.luxury-product-img-wrap {
  position: relative;
  height: 450px;
  overflow: hidden;
  background: var(--black);
}

.luxury-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.luxury-product-img-wrap img.back {
  opacity: 0;
  transform: scale(1.1);
}

.luxury-product-img-wrap.show-back img.front {
  opacity: 0;
  transform: scale(1.1);
}

.luxury-product-img-wrap.show-back img.back {
  opacity: 1;
  transform: scale(1);
}

.luxury-product-info {
  padding: 30px;
}

.luxury-product-info h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.product-description {
  color: var(--light-gold);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.luxury-price {
  margin-bottom: 25px;
}

.old-price {
  text-decoration: line-through;
  color: var(--light-gray);
  margin-right: 15px;
  font-size: 1.1rem;
}

.new-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.5rem;
}

.luxury-product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.view-btn {
  background: rgba(224, 196, 149, 0.1);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.view-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.reserve-btn {
  flex: 2;
  text-align: center;
  justify-content: center;
}

/* Luxury Exclusivity Section */
.luxury-exclusivity-section {
  padding: 120px 40px;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
}

.exclusivity-container {
  max-width: 1200px;
  margin: 0 auto;
}

.exclusivity-header {
  text-align: center;
  margin-bottom: 80px;
}

.exclusivity-header h2 {
  font-size: 3.5rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.exclusivity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.exclusivity-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 196, 149, 0.2);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.exclusivity-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(224, 196, 149, 0.1);
}

.exclusivity-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--black);
}

.exclusivity-card h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.exclusivity-card p {
  color: var(--light-gold);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Luxury VIP Section */
.luxury-vip-section {
  padding: 120px 40px;
  background: linear-gradient(135deg, rgba(224, 196, 149, 0.1), rgba(212, 175, 55, 0.05));
  position: relative;
  overflow: hidden;
}

.luxury-vip-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e0c495' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-100px, -100px) rotate(360deg); }
}

.vip-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vip-badge {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(224, 196, 149, 0.3);
}

.vip-container h2 {
  font-size: 3.5rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.vip-container p {
  font-size: 1.3rem;
  color: var(--light-gold);
  margin-bottom: 40px;
  line-height: 1.8;
}

.vip-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.vip-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 500;
}

.vip-feature i {
  font-size: 1.3rem;
}

.vip-btn {
  font-size: 1.2rem;
  padding: 18px 40px;
}

/* Luxury FAQ Section */
.luxury-faq-section {
  padding: 120px 40px;
  background: var(--dark-gray);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-header h2 {
  font-size: 3.5rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.faq-header p {
  font-size: 1.3rem;
  color: var(--light-gold);
}

.luxury-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.luxury-faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 196, 149, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.luxury-faq-item:hover {
  border-color: var(--gold);
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 25px 30px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  background: rgba(224, 196, 149, 0.05);
}

.faq-question.active {
  background: rgba(224, 196, 149, 0.1);
  color: var(--gold);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--gold);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--light-gold);
  font-size: 1.1rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* 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: 4rem;
  }
  
  .luxury-section-title {
    font-size: 3.5rem;
  }
  
  .luxury-product-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  
  .footer-content {
    gap: 60px;
  }
  
  .footer-links-grid {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    gap: 15px;
  }
  
  .nav-links li a {
    padding: 10px 15px;
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    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;
  }
  
  .luxury-hero-banner {
    height: 70vh;
    background-attachment: scroll;
    margin-top: 70px;
  }
  
  .luxury-title {
    font-size: 3rem;
  }
  
  .luxury-subtitle {
    font-size: 1.3rem;
  }
  
  .luxury-products,
  .luxury-exclusivity-section,
  .luxury-vip-section,
  .luxury-faq-section {
    padding: 80px 20px;
  }
  
  .luxury-section-title {
    font-size: 2.5rem;
  }
  
  .luxury-product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .luxury-product-img-wrap {
    height: 400px;
  }
  
  .luxury-faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .exclusivity-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .vip-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .luxury-footer {
    padding: 60px 20px 30px;
  }
}

@media (max-width: 480px) {
  .luxury-title {
    font-size: 2.5rem;
  }
  
  .luxury-hero-banner {
    height: 60vh;
  }
  
  .luxury-product-grid {
    grid-template-columns: 1fr;
  }
  
  .luxury-product-img-wrap {
    height: 350px;
  }
  
  .luxury-product-actions {
    flex-direction: column;
  }
  
  .view-btn, .reserve-btn {
    width: 100%;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 1.1rem;
  }
  
  .faq-answer p {
    padding: 0 20px 20px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-concierge-btn {
    width: 100%;
    justify-content: center;
  }
}