/* ========================================
   ONLINE ISTIKHARAH CENTER UK
   Main Stylesheet
   ======================================== */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --primary: #0F5866;
  --primary-dark: #0B4954;
  --primary-darker: #083840;
  --gold: #C9A84C;
  --gold-light: #E5C97A;
  --white: #ffffff;
  --cream: #FBF9F6;
  --light-gray: #F5F7F8;
  --text-dark: #1A1A2E;
  --text-secondary: #4A5568;
  --border-color: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(15,88,102,0.2);
  --gradient-primary: linear-gradient(135deg, #0F5866 0%, #0B4954 100%);
  --gradient-footer: linear-gradient(135deg, #0B4954 0%, #083840 100%);
  --gradient-whatsapp: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-arabic: 'Amiri', serif;
  --container-max: 1200px;
}

/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: var(--text-dark); }
p { margin-bottom: 1rem; color: var(--text-secondary); }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 50px 0; } }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 26px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; text-align: center; letter-spacing: 0.02em; font-size: 0.92rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: 7px; }
.btn-primary { background: var(--gradient-primary); color: var(--white); box-shadow: 0 2px 10px rgba(15,88,102,0.30); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 6px 20px rgba(15,88,102,0.38); color: var(--white); }
.btn-whatsapp { background: var(--gradient-whatsapp); color: var(--white); box-shadow: 0 2px 10px rgba(37,211,102,0.28); }
.btn-whatsapp:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 6px 20px rgba(37,211,102,0.36); color: var(--white); }

/* === HEADER === */
.site-header { background: var(--gradient-primary); position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; height: 62px; transition: var(--transition); color: var(--white); }
.site-header.scrolled { backdrop-filter: blur(12px); box-shadow: 0 2px 16px rgba(0,0,0,0.18); background: rgba(11, 73, 84, 0.97); }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo-link { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; }
.logo-icon { font-size: 1.35rem; }
.main-nav .nav-list { display: flex; gap: 22px; align-items: center; }
.nav-link { font-weight: 500; font-size: 0.9rem; position: relative; transition: var(--transition); }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold-light); }
.whatsapp-nav { color: var(--gold-light); }
.header-cta { display: flex; gap: 10px; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* MOBILE OVERLAY */
.mobile-overlay { position: fixed; top: 0; right: -100%; width: 100%; max-width: 350px; height: 100dvh; background: var(--primary-dark); z-index: 1001; transition: right 0.4s ease; display: flex; flex-direction: column; padding: 40px 20px; box-shadow: -5px 0 20px rgba(0,0,0,0.2); }
.mobile-overlay.active { right: 0; }
.mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; margin-bottom: 40px; }
.mobile-nav-link { color: var(--white); font-size: 1.2rem; font-family: var(--font-heading); }
.mobile-nav-link.active { color: var(--gold); }
.mobile-cta-buttons { display: flex; flex-direction: column; gap: 16px; }

@media (max-width: 992px) {
  .main-nav, .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* === HERO SLIDER === */
.hero-slider-section { position: relative; width: 100%; overflow: hidden; background: transparent; margin-top: 62px; padding: 0; line-height: 0; font-size: 0; }
.slider-wrapper { position: relative; width: 100%; line-height: 0; }
.slider-track { position: relative; width: 100%; display: flex; line-height: 0; }
.slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transition: opacity 0.8s ease-in-out; pointer-events: none; }
.slide.active { position: relative; opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: auto; object-fit: contain; display: block; line-height: 0; }
.desktop-slider { display: block; }
.mobile-slider { display: none; }
@media (max-width: 768px) {
  .desktop-slider { display: none; }
  .mobile-slider { display: block; }
}
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.35); color: var(--white); border: none; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; font-size: 1rem; transition: var(--transition); backdrop-filter: blur(4px); }
.slider-btn:hover { background: rgba(0,0,0,0.72); }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }
.slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.45); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--white); transform: scale(1.25); }

/* === COMMON SECTION TITLES === */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 2.5rem; color: var(--primary-dark); }
.section-title p { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* === ABOUT SECTION (Homepage) === */
.about-section { background-color: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content h2 { font-size: 2.5rem; color: var(--primary); }
.about-content h3 { font-size: 1.2rem; color: var(--gold); font-weight: 600; margin-bottom: 24px; font-family: var(--font-body); }
.about-content p.urdu-text { font-family: var(--font-arabic); font-size: 1.4rem; direction: rtl; line-height: 2; margin-bottom: 20px; color: var(--text-dark); text-align: right; }
.about-image img { border: 3px solid var(--gold); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); transition: var(--transition); }
.about-image img:hover { transform: scale(1.02); }
.about-btns { display: flex; gap: 16px; margin-top: 30px; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } .about-content h2 { font-size: 2rem; } }

/* === SERVICES SECTION === */
.services-section { background: var(--light-gray); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border-color); box-shadow: 0 2px 12px rgba(0,0,0,0.07); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; height: 100%; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(15,88,102,0.14); border-color: rgba(201,168,76,0.4); }
.service-img { width: 100%; height: 220px; object-fit: cover; }
.service-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.service-body h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-body p { font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; }
.service-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.service-actions .btn { flex: 1; min-width: 110px; font-size: 0.82rem; padding: 9px 14px; border-radius: 7px; }
@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .services-grid { grid-template-columns: 1fr; } }

/* === HERO SECTION 2 (Black Magic Hero) === */
.bm-hero { background: var(--gradient-primary); color: var(--white); overflow: hidden; }
.bm-hero h2 { color: var(--gold-light); font-size: 2.2rem; }
.urdu-list { font-family: var(--font-arabic); direction: rtl; font-size: 1.3rem; line-height: 2.2; text-align: right; margin-bottom: 30px; }
.urdu-list li { position: relative; padding-right: 20px; }
.urdu-list li::before { content: '•'; position: absolute; right: 0; color: var(--gold); }
.bm-image { border: 2px solid var(--gold); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); background: var(--white); padding: 5px; }

/* === PREMIUM GALLERY === */
.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-img-wrap { overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--gold); box-shadow: var(--shadow-sm); }
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-img-wrap:hover img { transform: scale(1.05); }
@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .gallery-grid { grid-template-columns: 1fr; } }

/* === BLACK MAGIC INFO SECTION === */
.bm-info-section { background: var(--cream); }
.arabic-verse { font-family: var(--font-arabic); font-size: 2.5rem; color: var(--gold); text-align: center; direction: rtl; margin: 40px 0 10px; }
.verse-translation { text-align: center; font-style: italic; color: var(--text-secondary); margin-bottom: 40px; }
.info-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.info-box-left { background: var(--gradient-primary); color: var(--white); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-md); }
.info-box-left h3 { color: var(--gold-light); }
.info-box-left ul li { margin-bottom: 15px; position: relative; padding-left: 20px; }
.info-box-left ul li::before { content: '•'; position: absolute; left: 0; color: var(--gold-light); }
.info-box-right { background: var(--white); border: 1px solid var(--gold); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-md); }
.step-item { margin-bottom: 24px; }
.step-title { font-weight: 700; color: var(--primary); margin-bottom: 5px; display: block; font-family: var(--font-heading); font-size: 1.2rem; }
@media (max-width: 768px) { .info-boxes { grid-template-columns: 1fr; } .arabic-verse { font-size: 2rem; } }

/* === CONTACT SECTION === */
.contact-section { background: var(--light-gray); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.95rem; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15, 88, 102, 0.1); }
textarea.form-control { min-height: 120px; resize: vertical; }
.contact-cards { display: grid; gap: 20px; }
.contact-card { background: var(--white); padding: 25px; border-radius: var(--radius-md); border-left: 4px solid var(--primary); box-shadow: var(--shadow-sm); display: flex; align-items: flex-start; gap: 15px; }
.contact-card-icon { font-size: 1.5rem; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.contact-card p, .contact-card a { color: var(--text-secondary); font-size: 1rem; }
.contact-card a:hover { color: var(--primary); text-decoration: underline; }
@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; } }

/* === WHY CHOOSE US === */
.why-us { background: var(--white); }
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.feature-card { text-align: center; padding: 28px 20px; background: var(--light-gray); border-radius: var(--radius-md); transition: var(--transition); border: 1px solid transparent; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.5); box-shadow: 0 6px 20px rgba(15,88,102,0.10); background: var(--white); }
.feature-icon { font-size: 2.5rem; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 15px; }
@media (max-width: 992px) { .why-us-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .why-us-grid { grid-template-columns: 1fr; } }

/* === FOOTER === */
.site-footer { background: var(--gradient-footer); color: var(--white); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-col h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 20px; }
.footer-logo { font-size: 1.5rem; font-family: var(--font-heading); font-weight: 700; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-col p { color: rgba(255,255,255,0.8); margin-bottom: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom { background: var(--primary-darker); padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 15px; }
.footer-social a { color: var(--white); opacity: 0.7; transition: var(--transition); font-size: 1.2rem; }
.footer-social a:hover { opacity: 1; color: var(--gold); transform: scale(1.1); }
@media (max-width: 992px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom-inner { flex-direction: column; text-align: center; } }

/* === FLOATING BUTTONS === */
.floating-buttons { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 999; }
.float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: var(--shadow-md); font-size: 1.5rem; text-decoration: none; position: relative; transition: var(--transition); }
.float-call { background: var(--gradient-primary); bottom: 95px; right: 30px; position: fixed; }
.float-whatsapp { background: var(--gradient-whatsapp); animation: pulse 2s infinite; }
.float-btn span { position: absolute; right: 60px; background: rgba(0,0,0,0.8); color: var(--white); padding: 6px 12px; border-radius: 4px; font-size: 0.85rem; font-weight: 500; opacity: 0; pointer-events: none; transition: var(--transition); white-space: nowrap; }
.float-btn:hover span { opacity: 1; right: 65px; }
.float-btn:hover { transform: scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
.back-to-top { position: fixed; bottom: 30px; left: 30px; width: 40px; height: 40px; background: var(--primary); color: var(--white); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow-sm); z-index: 998; opacity: 0; visibility: hidden; transition: var(--transition); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
@media (max-width: 768px) {
  .float-btn { width: 45px; height: 45px; font-size: 1.2rem; }
  .floating-buttons { bottom: 20px; right: 20px; }
  .float-call { bottom: 75px; right: 20px; }
  .back-to-top { bottom: 20px; left: 20px; }
}

/* === INNER PAGE HEROS === */
.inner-hero { margin-top: 62px; background: var(--gradient-primary); padding: 72px 0; color: var(--white); text-align: center; position: relative; overflow: hidden; }
.inner-hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="rgba(255,255,255,0.03)"/></svg>') repeat; opacity: 0.5; pointer-events: none; }
.inner-hero h1 { font-size: 3rem; color: var(--white); margin-bottom: 15px; position: relative; z-index: 1; }
.breadcrumb { position: relative; z-index: 1; display: inline-flex; gap: 10px; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.breadcrumb a { transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
@media (max-width: 768px) { .inner-hero h1 { font-size: 2.2rem; } .inner-hero { padding: 50px 0; } }

/* === FAQ ACCORDION === */
.faq-section { background: var(--cream); }
.accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.accordion-item { background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-sm); overflow: hidden; }
.accordion-header { width: 100%; padding: 20px; text-align: left; background: none; border: none; font-size: 1.1rem; font-family: var(--font-heading); font-weight: 600; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.accordion-header:hover { color: var(--primary); }
.accordion-icon { font-size: 1.2rem; transition: transform 0.3s ease; color: var(--primary); }
.accordion-header.active .accordion-icon { transform: rotate(45deg); }
.accordion-content { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease; }
.accordion-header.active + .accordion-content { padding: 0 20px 20px; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: var(--white); padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.testimonial-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.avatar.c1 { background: linear-gradient(135deg, #FF6B6B, #C44536); }
.avatar.c2 { background: linear-gradient(135deg, #4ECDC4, #1A535C); }
.avatar.c3 { background: linear-gradient(135deg, #FFE66D, #F7B267); color: var(--text-dark); }
.avatar.c4 { background: linear-gradient(135deg, #9D4EDD, #5A189A); }
.client-info h4 { margin: 0; font-size: 1.1rem; font-family: var(--font-body); }
.client-country { font-size: 0.85rem; color: var(--text-secondary); }
.stars { color: #FFD700; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 15px; }
.testimonial-text { font-style: italic; color: var(--text-secondary); line-height: 1.7; }
@media (max-width: 992px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* === SERVICE DETAIL PAGES === */
.service-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.service-intro img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); border: 2px solid var(--gold-light); }
.service-content h2 { color: var(--primary); font-size: 2.2rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.benefit-card { background: var(--cream); padding: 25px; border-radius: var(--radius-sm); text-align: center; border: 1px solid var(--border-color); }
.benefit-icon { font-size: 2rem; color: var(--gold); margin-bottom: 15px; }
.how-it-works { background: var(--primary-dark); color: var(--white); }
.how-it-works .section-title h2, .how-it-works .section-title p { color: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.step-card { background: rgba(255,255,255,0.05); padding: 40px 30px; border-radius: var(--radius-md); text-align: center; border: 1px solid rgba(255,255,255,0.1); position: relative; }
.step-number { width: 50px; height: 50px; background: var(--gold); color: var(--primary-dark); font-size: 1.5rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.cta-large { background: var(--gradient-primary); text-align: center; color: var(--white); padding: 80px 20px; border-radius: var(--radius-md); margin: 60px 0; box-shadow: var(--shadow-lg); }
.cta-large h2 { color: var(--gold-light); font-size: 2.5rem; }
.cta-large p { color: var(--white); font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; }
@media (max-width: 768px) { .service-intro, .benefits-grid, .steps-grid { grid-template-columns: 1fr; } }

/* === LEGAL PAGES (Privacy, Terms) === */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
.legal-content h2 { margin-top: 30px; color: var(--primary); }
.legal-content ul { margin-left: 20px; list-style-type: disc; margin-bottom: 20px; color: var(--text-secondary); }
.legal-content li { margin-bottom: 10px; }
@media (max-width: 768px) { .legal-content { padding: 30px 20px; } }

/* === 404 & THANK YOU === */
.status-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--cream); }
.status-content { max-width: 600px; padding: 40px; }
.status-icon { font-size: 5rem; margin-bottom: 20px; }
.status-title { font-size: 3rem; color: var(--primary); margin-bottom: 10px; }
.status-page p { font-size: 1.2rem; margin-bottom: 30px; }

/* === ANIMATIONS === */
.animate-fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-zoom { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }

.animate-fade-up.visible,
.animate-fade-left.visible,
.animate-fade-right.visible,
.animate-zoom.visible { opacity: 1; transform: translate(0) scale(1); }

/* Disclaimer text */
.disclaimer-text { text-align: center; font-style: italic; color: var(--text-secondary); font-size: 0.9rem; margin-top: 40px; }
