/* ============================================================
   QuickGlam Home Salon – Global Stylesheet
   ============================================================ */

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


/* ── Rose Gold Brand Palette ──────────────────────────────── */
:root {
  --brand-primary:    #B87B6B;   /* rose gold */
  --brand-dark:       #9A6358;   /* deep rose gold */
  --brand-deeper:     #7A4A3A;   /* rich copper brown */
  --brand-bg-dark:    #3D2220;   /* near-black brown */
  --brand-light:      #fdf5f3;   /* blush white */
  --brand-light-mid:  #f5e6e2;   /* soft rose */
  --brand-border:     #e8c5bb;   /* rose border */
  --text-dark:        #2d1a17;   /* warm dark */
  --text-mid:         #6b7280;
  --text-light:       #9ca3af;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: #fff;
  color: #2d1a17;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar,
nav.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0ddd8;
  box-shadow: 0 2px 8px rgba(184,123,107,.12);
}

.navbar .container,
nav.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
  min-height: 80px;
}

/* ── Logo ── */
.nav-brand a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-brand img {
  height: 120px !important;
  width: 120px !important;
  
}

.logo-icon { font-size: 28px; color: #B87B6B; }
.logo-text  { color: #B87B6B; }

/* ── Desktop nav links ── */
.nav-menu {
  display: none;
  list-style: none;
  gap: 32px;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #2d1a17;
  font-size: 14px;
  font-weight: 600;
  transition: color .25s;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: #B87B6B;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

.nav-menu a:hover,
.nav-menu a.active { color: #B87B6B; }

/* ── Book Now button ── */
.book-btn {
  background: linear-gradient(135deg, #B87B6B, #9A6358);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(184,123,107,.3);
}

.book-btn:hover {
  background: linear-gradient(135deg, #9A6358, #7A4A3A);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(184,123,107,.45);
}

/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1.5px solid #e8c5bb;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .2s, border-color .2s;
  z-index: 110;
}

.hamburger:hover { background: #fdf5f3; border-color: #B87B6B; }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #4A2C2A;
  border-radius: 2px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu drawer ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  background: #fff;
  z-index: 99;
  box-shadow: 0 12px 32px rgba(74,44,42,.15);
  border-top: 2px solid #f0ddd8;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  animation: slideDown .25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  text-decoration: none;
  color: #2d1a17;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 24px;
  border-bottom: 1px solid #f5e6e2;
  transition: background .2s, color .2s;
  display: block;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: #fdf5f3;
  color: #B87B6B;
  padding-left: 30px;
}

.mobile-menu-book {
  margin: 16px 20px 22px;
  display: block;
  background: linear-gradient(135deg, #B87B6B, #9A6358);
  color: #fff !important;
  text-align: center;
  border-radius: 8px;
  padding: 15px 24px !important;
  font-weight: 700;
  font-size: 15px;
  border-bottom: none !important;
  box-shadow: 0 4px 14px rgba(184,123,107,.35);
  text-decoration: none;
}

.mobile-menu-book:hover {
  background: linear-gradient(135deg, #9A6358, #7A4A3A) !important;
  color: #fff !important;
  padding-left: 24px !important;
}

/* ── Breakpoint switching ── */
@media (min-width: 768px) {
  .nav-menu  { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

@media (max-width: 767px) {
  .book-btn  { display: none; }
  .hamburger { display: flex; }
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: #2d1a17;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: #6b7280;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Services Section ─────────────────────────────────────── */
.services-section {
  padding: 80px 20px;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f0ddd8;
  transition: all .3s;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(184,123,107,.22);
}

.service-card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 75%; /* enforces 4:3 ratio */
}

.service-card-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-price-banner {
  position: absolute;
  top: 12px; left: 12px;
  background: #B87B6B;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  z-index: 2;
  letter-spacing: .3px;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,44,42,.88) 0%, rgba(74,44,42,.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}

.service-card:hover .service-overlay { opacity: 1; }

.service-overlay h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.3;
}

.service-overlay p {
  color: rgba(255,255,255,.88);
  font-size: 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.service-card-name {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  color: #4A2C2A;
  text-align: center;
  background: #fff;
  border-top: 1px solid #f5e6e2;
  flex-shrink: 0;
}

.service-card-name h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2d1a17;
  margin-bottom: 6px;
}

.service-card-name p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}

.service-card-name .price {
  font-size: 16px;
  font-weight: 800;
  color: #B87B6B;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.badge {
  background: #fdf5f3;
  color: #9A6358;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid #e8c5bb;
}

.book-service-btn {
  background: #B87B6B;
  color: #fff;
  padding: 9px 18px;
  border: none;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  width: 100%;
  margin-top: 4px;
}

.book-service-btn:hover {
  background: #9A6358;
  transform: translateY(-1px);
}

/* ── Gallery Section ──────────────────────────────────────── */
.gallery-section {
  padding: 80px 20px;
  background: #fafafa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,44,42,.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s;
}

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

.gallery-overlay h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section {
  padding: 80px 20px;
  background: #fdf8f6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border: 1px solid #f5e6e2;
  transition: transform .3s, box-shadow .3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(184,123,107,.12);
}

.stars {
  font-size: 18px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 14px;
  color: #374151;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: #B87B6B;
}

/* ── About Grid ───────────────────────────────────────────── */
.about-section {
  padding: 80px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr !important; gap: 32px; }
}

.about-grid img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}

.about-grid h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #2d1a17;
  margin-bottom: 16px;
}

.about-grid p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ── FAQ Section ──────────────────────────────────────────── */
.faq-section {
  padding: 80px 20px;
  background: #fafafa;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .faq-grid { grid-template-columns: 1fr; }
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  border: 1px solid #f3f4f6;
  cursor: pointer;
  transition: box-shadow .3s;
}

.faq-item:hover { box-shadow: 0 6px 24px rgba(184,123,107,.1); }

.faq-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #2d1a17;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-icon {
  color: #B87B6B;
  font-size: 18px;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 14px;
  color: #6b7280;
  margin-top: 12px;
  line-height: 1.75;
}

/* ── Contact Section ──────────────────────────────────────── */
.contact-section {
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #2d1a17;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 12px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: #fdf5f3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B87B6B;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: #2d1a17;
  margin-bottom: 2px;
}

.contact-item-text p, .contact-item-text a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
}

/* ── Booking Form ─────────────────────────────────────────── */
.booking-section {
  padding: 80px 20px;
  background: #fafafa;
}

.booking-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #4A2C2A;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all .25s;
  background: #f9fafb;
  color: #2d1a17;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #B87B6B;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184,123,107,.10);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 24px 18px; }
}

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 20px;
}

.terms-row input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
}

.submit-btn {
  background: linear-gradient(135deg, #B87B6B 0%, #9A6358 100%);
  color: #fff;
  border: none;
  padding: 15px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all .3s;
  width: 100%;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(184,123,107,.35);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,123,107,.45);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  display: none;
}

.alert-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.alert-error {
  background: #fdf5f3;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ── Spinner ──────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #4A2C2A, #B87B6B);
  color: #fff;
  padding: 72px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 17px;
  opacity: .9;
  margin-bottom: 28px;
}

.cta-section a {
  display: inline-block;
  background: #fff;
  color: #B87B6B;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.cta-section a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #2d1a17;
  color: #9ca3af;
  padding: 56px 20px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.footer-col p, .footer-col a {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
  line-height: 1.8;
  display: block;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li a {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
  transition: color .2s;
  display: inline;
}

.footer-col ul li a:hover { color: #fff; }

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.social-links a:hover {
  background: #B87B6B;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* ── WhatsApp Float ───────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .3s, box-shadow .3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

/* ── Responsive Helpers ───────────────────────────────────── */
@media (max-width: 768px) {
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Legal Pages (Privacy Policy & Terms) ────────────────────── */
.legal-hero {
    background: linear-gradient(135deg, #3D2220 0%, #9A6358 60%, #C9917A 100%);
    color: #fff;
    padding: 64px 20px;
    text-align: center;
}
.legal-hero h1 { font-size: clamp(28px,5vw,46px); font-weight: 800; margin-bottom: 12px; }
.legal-hero p  { font-size: 16px; opacity: .85; max-width: 520px; margin: 0 auto; }
.legal-meta {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
    padding: 6px 16px; border-radius: 99px;
    font-size: 13px; font-weight: 600; margin-top: 18px;
}
.legal-layout {
    display: grid; grid-template-columns: 240px 1fr;
    gap: 48px; max-width: 1100px;
    margin: 56px auto; padding: 0 24px; align-items: start;
}
@media (max-width: 860px) {
    .legal-layout { grid-template-columns: 1fr; gap: 32px; }
    .legal-toc { display: none; }
}
.legal-toc {
    position: sticky; top: 96px;
    background: #fdf8f6; border: 1px solid #e8c5bb;
    border-radius: 14px; padding: 24px 20px;
}
.legal-toc h3 {
    font-size: 13px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; color: #9A6358; margin-bottom: 14px;
}
.legal-toc ol { padding-left: 16px; margin: 0; }
.legal-toc li { margin-bottom: 8px; }
.legal-toc a { font-size: 13px; color: #4A2C2A; text-decoration: none; font-weight: 500; line-height: 1.5; transition: color .2s; }
.legal-toc a:hover { color: #B87B6B; }
.legal-content h2 {
    font-size: 22px; font-weight: 800; color: #3D2220;
    margin: 48px 0 14px; padding-top: 8px;
    border-top: 2px solid #f5e6e2;
    display: flex; align-items: center; gap: 10px;
}
.legal-content h2:first-child { margin-top: 0; border-top: none; }
.legal-content h2 .section-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    background: linear-gradient(135deg, #B87B6B, #9A6358);
    color: #fff; border-radius: 50%;
    font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.legal-content p  { font-size: 15px; color: #4b4b4b; line-height: 1.85; margin-bottom: 14px; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin-bottom: 16px; }
.legal-content li { font-size: 15px; color: #4b4b4b; line-height: 1.8; margin-bottom: 6px; }
.legal-content strong { color: #3D2220; }
.legal-content a { color: #B87B6B; font-weight: 600; }
.info-box {
    background: #fdf5f3; border-left: 4px solid #B87B6B;
    border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 20px 0;
}
.info-box p { margin: 0; font-size: 14px; }
.warn-box {
    background: #fff9f0; border-left: 4px solid #e09a50;
    border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 20px 0;
}
.warn-box p { margin: 0; font-size: 14px; color: #6b4c1e; }
.legal-contact-card {
    background: linear-gradient(135deg, #3D2220, #9A6358);
    color: #fff; border-radius: 14px;
    padding: 32px 28px; margin-top: 48px; text-align: center;
}
.legal-contact-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.legal-contact-card p  { font-size: 14px; opacity: .88; margin-bottom: 20px; }
.legal-contact-card a  {
    display: inline-block; background: #fff; color: #B87B6B;
    padding: 12px 28px; border-radius: 8px;
    font-weight: 700; font-size: 14px;
    text-decoration: none; transition: transform .2s;
}
.legal-contact-card a:hover { transform: translateY(-2px); }
