/* ============================================================
   AGHNI GOLD LUXURY LEGAL PAGES STYLES (Privacy Policy & Terms)
   ============================================================ */

body.luxury-legal-page {
  background-color: #FAF5EE;
  color: #2C1A1D;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Legal Main Container */
.legal-main {
  padding: 40px 0 80px;
  background-color: #FAF5EE;
}

/* Legal Container Shell */
.legal-container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-hero-banner {
  margin-top: 0;
  background: linear-gradient(180deg, #F5EAE0 0%, #FAF5EE 100%);
  padding-top: 110px;
  padding-bottom: 45px;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .legal-hero-banner {
    margin-top: 0;
    padding-top: 95px;
    padding-bottom: 35px;
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .legal-hero-banner {
    margin-top: 0;
    padding-top: 85px;
    padding-bottom: 25px;
    min-height: auto;
  }
}

.legal-hero-title {
  margin: 0 0 12px;
  font-family: 'Playfair Display', 'Bodoni Moda', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.25;
}

.legal-hero-title .dark-text {
  color: #4A0707;
}

.legal-hero-title .divider-bar {
  color: #C98509;
  margin: 0 8px;
}

.legal-hero-title .gold-text {
  color: #C98509;
}

.legal-hero-subtitle {
  max-width: 860px;
  margin: 0 auto;
  color: #5F5F5F;
  font-size: 16px;
  line-height: 1.6;
}

/* Important Legal Notice Box */
.legal-notice-card {
  background: linear-gradient(145deg, #3A0507 0%, #1F0102 100%);
  border: 1.5px solid #D4AF37;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 36px;
  box-shadow: 0 16px 40px rgba(58, 5, 7, 0.25), 0 0 20px rgba(212, 175, 55, 0.2);
  color: #FFFDF9;
  position: relative;
  overflow: hidden;
}

.legal-notice-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.legal-notice-header i {
  color: #F0D77A;
  font-size: 22px;
}

.legal-notice-header h2 {
  margin: 0;
  color: #F0D77A;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.legal-notice-card p {
  margin: 0;
  color: #FFE899;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

/* Legal Content Section Cards */
.legal-sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-card {
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 5px solid #680A0A;
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.legal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(104, 10, 10, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
}

.legal-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #5A0000;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-card-title i {
  color: #C98509;
  font-size: 18px;
}

.legal-card p {
  color: #4A4A4A;
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 14px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card li {
  position: relative;
  padding-left: 28px;
  color: #3A3A3A;
  font-size: 15px;
  line-height: 1.65;
}

.legal-card li::before {
  content: "\\2756";
  position: absolute;
  left: 0;
  top: 0;
  color: #C98509;
  font-size: 13px;
}

.legal-alert-box {
  background: rgba(181, 29, 29, 0.08);
  border: 1px solid rgba(181, 29, 29, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #B51D1D;
  font-weight: 600;
  font-size: 14px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.legal-contact-item {
  background: #FFF9F2;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  padding: 16px;
}

.legal-contact-item strong {
  color: #5A0000;
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.legal-contact-item span,
.legal-contact-item a {
  color: #3A3A3A;
  font-size: 14px;
  text-decoration: none;
}

.legal-contact-item a:hover {
  color: #C98509;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-hero-banner {
    padding: 40px 0 25px;
  }
  .legal-notice-card {
    padding: 22px 20px;
  }
  .legal-card {
    padding: 22px 20px;
  }
  .legal-card-title {
    font-size: 19px;
  }
}
