/*
Theme Name: RFS Financial Services
Theme URI: https://rishabhfinancialservices.com
Author: RFS Web Team
Author URI: https://rishabhfinancialservices.com
Description: Professional WordPress theme for Rishabh Financial Services - Loans, Insurance & Financial Solutions
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rfs-theme
Tags: financial, loans, business, professional, responsive
*/

/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --primary: #0a2d6e;
  --primary-dark: #061a45;
  --secondary: #e8a020;
  --accent: #22c55e;
  --text-dark: #1a1a2e;
  --text-light: #6b7280;
  --white: #ffffff;
  --light-bg: #f5f7fa;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(10,45,110,0.10);
  --shadow-lg: 0 8px 40px rgba(10,45,110,0.15);
  --radius: 10px;
  --radius-lg: 18px;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --transition: all 0.3s ease;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}

/* =============================================
   UTILITY CLASSES
============================================= */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-primary { background: var(--primary); }
.bg-light { background: var(--light-bg); }

.section-tag {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 40px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--secondary);
  color: var(--primary-dark);
}
.btn-primary:hover { background: #d4901a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,160,32,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* =============================================
   HEADER / NAVIGATION
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,45,110,0.09);
}
.topbar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.83rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--secondary); }
.topbar-contact { display: flex; gap: 24px; align-items: center; }
.topbar-contact span { display: flex; align-items: center; gap: 6px; }

.navbar { padding: 0; }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -1px;
}
.logo-text .brand { font-size: 1.2rem; font-weight: 800; color: var(--primary); font-family: var(--font-heading); }
.logo-text .tagline { font-size: 0.7rem; color: var(--text-light); letter-spacing: 1px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-radius: 6px;
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); background: rgba(10,45,110,0.06); }
.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.88rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

/* =============================================
   HERO SECTION
============================================= */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1a4fa8 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.2);
  color: var(--secondary);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  border: 1px solid rgba(232,160,32,0.3);
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero h1 span { color: var(--secondary); }
.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat-item { }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--secondary); font-family: var(--font-heading); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--primary); margin-bottom: 6px; font-size: 1.25rem; }
.hero-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }
.loan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.loan-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--light-bg);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.loan-item .icon {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

/* =============================================
   LOAN TYPES / SERVICES GRID
============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), #1a4fa8);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  color: var(--secondary);
}
.service-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--primary-dark); font-family: var(--font-body); font-weight: 700; }
.service-card p { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; }

/* =============================================
   WHY CHOOSE US
============================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.why-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(10,45,110,0.07);
  border-left: 4px solid var(--secondary);
}
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #1a4fa8);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--secondary);
}
.why-text h4 { font-size: 1rem; margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; }
.why-text p { font-size: 0.85rem; color: var(--text-light); }
.why-image-wrap {
  background: linear-gradient(135deg, var(--primary), #1a4fa8);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  color: var(--white);
}
.why-image-wrap .big-num { font-size: 4rem; font-weight: 900; color: var(--secondary); font-family: var(--font-heading); display: block; }
.why-image-wrap p { opacity: 0.85; }
.eligibility-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.eligibility-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; opacity: 0.9; }
.eligibility-list li::before { content: '✓'; color: var(--secondary); font-weight: 900; font-size: 1rem; }

/* =============================================
   PARTNER BANKS
============================================= */
.banks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.bank-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}
.bank-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.bank-emoji { font-size: 1.6rem; display: block; margin-bottom: 6px; }

/* =============================================
   PROCESS / HOW IT WORKS
============================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.process-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.process-card:hover { border-color: var(--secondary); box-shadow: var(--shadow); }
.step-num {
  width: 52px; height: 52px;
  background: var(--secondary);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem;
  margin: 0 auto 18px;
  font-family: var(--font-heading);
}
.process-card h4 { margin-bottom: 8px; font-size: 1rem; font-family: var(--font-body); font-weight: 700; }
.process-card p { font-size: 0.85rem; color: var(--text-light); }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--secondary);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--secondary); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-light); font-style: italic; line-height: 1.7; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-loan { font-size: 0.78rem; color: var(--text-light); }

/* =============================================
   CTA BANNER
============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '₹';
  position: absolute;
  font-size: 22rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  right: -40px; top: -60px;
  font-family: var(--font-heading);
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   CONTACT FORM
============================================= */
.contact-section { padding: 80px 0; background: var(--light-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--secondary);
}
.contact-item h4 { font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-body); font-weight: 600; margin-bottom: 4px; }
.contact-item a, .contact-item p { font-weight: 600; color: var(--primary-dark); font-size: 0.95rem; }
.contact-item a:hover { color: var(--secondary); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { margin-bottom: 6px; font-size: 1.4rem; }
.contact-form-wrap > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--light-bg);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,45,110,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 6px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 12px; }

/* =============================================
   ABOUT PAGE
============================================= */
.about-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}
.about-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 14px; }
.about-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.breadcrumb {
  background: var(--light-bg);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb span { color: var(--text-light); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--secondary); box-shadow: var(--shadow); transform: translateY(-4px); }
.value-icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.value-card p { font-size: 0.85rem; color: var(--text-light); }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text .brand { color: var(--white); }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 16px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
}
.social-btn:hover { background: var(--secondary); color: var(--primary-dark); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; transition: var(--transition); }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 10px; font-size: 0.87rem; }
.footer-contact-item .fc-icon { font-size: 1rem; margin-top: 2px; color: var(--secondary); flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--secondary); }

/* =============================================
   FLOATING WHATSAPP BUTTON
============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.7); }
}

/* =============================================
   MOBILE NAV OVERLAY
============================================= */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    gap: 4px;
    z-index: 999;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .nav-cta { width: 100%; margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-stats { gap: 20px; }
  .topbar .container { justify-content: center; }
}

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }

/* Success / Error Message */
.form-message { padding: 14px 18px; border-radius: 8px; font-size: 0.9rem; margin-top: 12px; display: none; }
.form-message.success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; display: block; }
.form-message.error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; display: block; }
