/* ============================================================
   LegaFin (India) Advisory LLP — Custom Stylesheet
   Theme: Modern Professional with Google Fonts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --primary:       #0F172A;
  --primary-dark:  #020617;
  --primary-light: #1E293B;
  --accent:        #0EA5E9;
  --accent-dark:   #0284C7;
  --accent-light:  #38BDF8;
  --accent-gold:   #F59E0B;
  --bg-light:      #F8FAFC;
  --bg-lighter:    #FFFFFF;
  --border:        #E2E8F0;
  --text-dark:     #0F172A;
  --text-muted:    #64748B;
  --white:         #FFFFFF;
  --gradient-1:    linear-gradient(135deg, #0EA5E9 0%, #3B82F6 100%);
  --gradient-2:    linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --shadow-sm:     0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md:     0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg:     0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-xl:     0 20px 25px -5px rgba(0,0,0,0.1);
  --radius:        8px;
  --radius-lg:     12px;
  --radius-xl:     16px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
  color: var(--text-dark); 
  background: var(--bg-lighter); 
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-dark); text-decoration: none; }
h1,h2,h3,h4,h5,h6 { 
  font-family: 'Playfair Display', Georgia, serif; 
  font-weight: 700; 
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ---------- Navbar ---------- */
.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1);
  padding: 0 1rem;
  min-height: 72px;
  border-bottom: 1px solid var(--border);
}
.navbar-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary) !important;
  letter-spacing: -0.02em;
}
.navbar-brand span { 
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-brand small { 
  display: block; 
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem; 
  font-weight: 500; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  color: var(--text-muted);
  margin-top: 2px;
}
.nav-link { 
  color: var(--text-dark) !important; 
  font-size: 0.9rem; 
  font-weight: 500; 
  padding: 0.6rem 1rem !important; 
  border-radius: var(--radius); 
  transition: all 0.2s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { 
  width: 60%;
}
.nav-link:hover, .nav-link.active { 
  color: var(--accent) !important; 
}
.navbar-toggler { 
  border: 2px solid var(--border);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
.dropdown-menu { 
  border: 1px solid var(--border); 
  box-shadow: var(--shadow-lg); 
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.dropdown-item { 
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.dropdown-item:hover { 
  background: var(--bg-light); 
  color: var(--accent);
  transform: translateX(4px);
}

/* ---------- Hero ---------- */
.hero-section {
  background: var(--gradient-2);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}
.hero-section::after {
  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.02'%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-section .badge-pill {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero-section h1 { 
  font-size: 3.5rem; 
  color: #fff; 
  font-weight: 800; 
  line-height: 1.1; 
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-section h1 span { 
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section .lead { 
  color: rgba(255,255,255,0.9); 
  font-size: 1.15rem; 
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.7;
}
.hero-pills .badge { 
  background: rgba(255,255,255,0.1); 
  color: rgba(255,255,255,0.95); 
  border: 1px solid rgba(255,255,255,0.2); 
  font-size: 0.85rem; 
  padding: 8px 16px; 
  border-radius: 50px; 
  margin: 5px; 
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.hero-pills .badge:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
}
.hero-card .stat { text-align: center; padding: 1rem; }
.hero-card .stat h3 { 
  font-size: 2.5rem; 
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-weight: 800;
}
.hero-card .stat p { 
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; 
  color: rgba(255,255,255,0.8); 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  margin: 0;
  font-weight: 500;
}

/* ---------- Section Headers ---------- */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .eyebrow { 
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; 
  color: var(--accent); 
  letter-spacing: 2.5px; 
  text-transform: uppercase; 
  font-weight: 700; 
  margin-bottom: 1rem;
}
.section-header h2 { 
  font-size: 2.5rem; 
  color: var(--text-dark); 
  margin-bottom: 1rem;
  font-weight: 800;
}
.section-header .divider { 
  width: 60px; 
  height: 4px; 
  background: var(--gradient-1); 
  border-radius: 2px; 
  margin: 1rem auto 1.5rem;
}
.section-header p { 
  color: var(--text-muted); 
  max-width: 600px; 
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Cards ---------- */
.card { 
  border: 1px solid var(--border); 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-sm); 
  transition: all 0.3s ease; 
  background: #fff;
  overflow: hidden;
}
.card:hover { 
  box-shadow: var(--shadow-xl); 
  transform: translateY(-8px);
  border-color: var(--accent-light);
}
.card-header-blue { 
  background: var(--gradient-1); 
  color: #fff; 
  border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important; 
  padding: 1.5rem; 
  border: none;
}
.card-header-blue h5 { 
  margin: 0; 
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.svc-icon-wrap { 
  width: 64px; 
  height: 64px; 
  border-radius: var(--radius-lg); 
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 1.25rem;
  border: 2px solid rgba(14, 165, 233, 0.2);
  transition: all 0.3s ease;
}
.card:hover .svc-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-1);
}
.card:hover .svc-icon-wrap i {
  color: #fff;
}
.svc-icon-wrap i { 
  font-size: 1.75rem; 
  color: var(--accent);
  transition: color 0.3s ease;
}
.svc-card h5 { 
  font-size: 1.1rem; 
  font-weight: 700; 
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}
.svc-card ul { 
  padding-left: 1.2rem;
  margin: 0;
}
.svc-card ul li { 
  font-size: 0.9rem; 
  color: var(--text-muted); 
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ---------- Stat Strip ---------- */
.stat-strip { 
  background: var(--gradient-1); 
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.stat-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}
.stat-strip .stat-num { 
  font-size: 2.5rem; 
  font-weight: 800; 
  color: #fff;
  font-family: 'Playfair Display', serif;
}
.stat-strip .stat-lbl { 
  font-size: 0.8rem; 
  color: rgba(255,255,255,0.9); 
  text-transform: uppercase; 
  letter-spacing: 2px;
  font-weight: 600;
}

/* ---------- Why Cards ---------- */
.why-card { 
  border-left: 4px solid var(--accent); 
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0; 
  background: #fff; 
  padding: 2rem; 
  margin-bottom: 1.5rem; 
  box-shadow: var(--shadow-sm); 
  transition: all 0.3s ease;
}
.why-card:hover { 
  border-color: var(--accent-gold); 
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
}
.why-card .why-num { 
  font-size: 2.5rem; 
  font-weight: 800; 
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; 
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}
.why-card h5 { 
  font-size: 1.05rem; 
  font-weight: 700; 
  margin-bottom: 0.5rem;
}
.why-card p { 
  font-size: 0.9rem; 
  color: var(--text-muted); 
  margin: 0;
  line-height: 1.7;
}

/* ---------- Approach ---------- */
.step-card { 
  display: flex; 
  gap: 1.25rem; 
  margin-bottom: 2rem; 
  align-items: flex-start;
}
.step-num { 
  min-width: 48px; 
  height: 48px; 
  border-radius: var(--radius-lg); 
  background: var(--gradient-1); 
  color: #fff; 
  font-size: 1.1rem; 
  font-weight: 800; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.step-card h6 { 
  font-size: 1rem; 
  font-weight: 700; 
  margin-bottom: 5px;
  font-family: 'Inter', sans-serif;
}
.step-card p { 
  font-size: 0.9rem; 
  color: var(--text-muted); 
  margin: 0;
  line-height: 1.7;
}
.philosophy-box { 
  background: var(--gradient-2); 
  border-radius: var(--radius-xl); 
  padding: 2.5rem; 
  border-left: 5px solid var(--accent-gold);
  box-shadow: var(--shadow-xl);
}
.philosophy-box h5 { 
  color: var(--accent-gold); 
  font-size: 1.15rem; 
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.philosophy-box p { 
  color: rgba(255,255,255,0.9); 
  font-size: 0.95rem; 
  line-height: 1.8; 
  margin-bottom: 1rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner { 
  background: var(--gradient-1); 
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.cta-banner h2 { 
  color: #fff; 
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-banner p { 
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

/* ---------- Contact ---------- */
.contact-info-card { 
  background: var(--gradient-2); 
  border-radius: var(--radius-xl); 
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}
.contact-info-card h4 { 
  color: #fff; 
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
}
.contact-row { 
  display: flex; 
  gap: 15px; 
  margin-bottom: 1.5rem; 
  align-items: flex-start;
}
.contact-icon { 
  width: 44px; 
  height: 44px; 
  border-radius: var(--radius-lg); 
  background: rgba(14, 165, 233, 0.2); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0;
}
.contact-icon i { 
  font-size: 1.2rem; 
  color: var(--accent-light);
}
.contact-lbl { 
  font-size: 0.75rem; 
  color: rgba(255,255,255,0.6); 
  text-transform: uppercase; 
  letter-spacing: 1.5px;
  font-weight: 600;
}
.contact-val { 
  font-size: 0.95rem; 
  color: #fff; 
  margin-top: 4px;
  line-height: 1.6;
}
.form-control, .form-select { 
  border: 2px solid var(--border); 
  border-radius: var(--radius-lg); 
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.form-control:focus, .form-select:focus { 
  border-color: var(--accent); 
  box-shadow: 0 0 0 4px rgba(14,165,233,0.1);
}
.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

/* ---------- Industry Tags ---------- */
.ind-tag { 
  display: inline-block; 
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: var(--accent); 
  font-size: 0.85rem; 
  padding: 10px 18px; 
  border-radius: 50px; 
  border: 2px solid rgba(14, 165, 233, 0.2); 
  margin: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.ind-tag:hover {
  background: var(--gradient-1);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ---------- Client Chips ---------- */
.client-chip { 
  background: #fff; 
  border: 2px solid var(--border); 
  border-radius: var(--radius-lg); 
  padding: 1.25rem; 
  font-size: 0.9rem; 
  color: var(--text-dark); 
  display: flex; 
  align-items: center; 
  gap: 15px; 
  transition: all 0.3s ease;
}
.client-chip:hover { 
  border-color: var(--accent); 
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.client-chip i { 
  font-size: 1.5rem; 
  color: var(--accent);
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero { 
  background: var(--gradient-2); 
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
}
.page-hero h1 { 
  color: #fff; 
  font-size: 2.75rem; 
  margin-bottom: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-hero p { 
  color: rgba(255,255,255,0.85); 
  font-size: 1.1rem; 
  margin: 0;
}
.breadcrumb-item a { 
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
  color: #fff;
}
.breadcrumb-item.active { 
  color: var(--accent-gold);
}
.breadcrumb-item + .breadcrumb-item::before { 
  color: rgba(255,255,255,0.5);
}

/* ---------- Legal Pages ---------- */
.legal-content { 
  background: #fff; 
  border-radius: var(--radius-xl); 
  padding: 3rem; 
  box-shadow: var(--shadow-sm); 
  border: 1px solid var(--border);
}
.legal-content h2 { 
  font-size: 1.4rem; 
  color: var(--primary); 
  border-left: 4px solid var(--accent); 
  padding-left: 1rem; 
  margin: 2.5rem 0 1rem;
  font-weight: 700;
}
.legal-content h2:first-child { 
  margin-top: 0;
}
.legal-content p, .legal-content li { 
  font-size: 0.95rem; 
  color: var(--text-muted); 
  line-height: 1.9;
}
.legal-content ul { 
  padding-left: 1.5rem;
}
.legal-content strong {
  color: var(--text-dark);
  font-weight: 600;
}
.legal-sidebar .card { 
  position: sticky; 
  top: 100px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.legal-sidebar .list-group-item { 
  font-size: 0.9rem; 
  border-color: var(--border); 
  cursor: pointer;
  padding: 0.9rem 1.2rem;
  transition: all 0.3s ease;
}
.legal-sidebar .list-group-item:hover { 
  background: var(--bg-light); 
  color: var(--accent);
  padding-left: 1.5rem;
}
.legal-sidebar .list-group-item.active {
  background: var(--gradient-1);
  color: #fff;
  border-color: var(--accent);
}

/* ---------- Team ---------- */
.team-card { 
  text-align: center;
}
.team-avatar { 
  width: 100px; 
  height: 100px; 
  border-radius: 50%; 
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  margin: 0 auto 1.25rem; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 2.2rem; 
  font-weight: 800; 
  color: var(--accent); 
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-md);
}

/* ---------- Footer ---------- */
footer { 
  background: var(--gradient-2);
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(14, 165, 233, 0.5) 50%, transparent 100%);
}
.footer-top { 
  padding: 4rem 0 3rem; 
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { 
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem; 
  font-weight: 800; 
  color: #fff; 
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.footer-brand span { 
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-desc { 
  font-size: 0.9rem; 
  color: rgba(255,255,255,0.7); 
  line-height: 1.8; 
  margin-bottom: 1.25rem;
}
.footer-heading { 
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; 
  text-transform: uppercase; 
  letter-spacing: 2.5px; 
  color: var(--accent-light); 
  font-weight: 700; 
  margin-bottom: 1.25rem;
}
.footer-links { 
  list-style: none; 
  padding: 0; 
  margin: 0;
}
.footer-links li { 
  margin-bottom: 0.6rem;
}
.footer-links a { 
  font-size: 0.9rem; 
  color: rgba(255,255,255,0.7); 
  text-decoration: none; 
  transition: all 0.2s ease;
  display: inline-block;
}
.footer-links a:hover { 
  color: #fff;
  transform: translateX(5px);
}
.footer-contact-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 12px; 
  margin-bottom: 1rem;
}
.footer-contact-item i { 
  font-size: 1.1rem; 
  color: var(--accent-light); 
  margin-top: 2px; 
  flex-shrink: 0;
}
.footer-contact-item span { 
  font-size: 0.9rem; 
  color: rgba(255,255,255,0.7); 
  line-height: 1.6;
}
.footer-bottom { 
  padding: 1.5rem 0;
}
.footer-bottom p { 
  font-size: 0.85rem; 
  color: rgba(255,255,255,0.5); 
  margin: 0;
}
.footer-badge { 
  font-size: 0.8rem; 
  color: rgba(255,255,255,0.4); 
  border: 1px solid rgba(255,255,255,0.2); 
  padding: 5px 14px; 
  border-radius: 50px;
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn-fb { 
  background: var(--gradient-1); 
  color: #fff; 
  border: none; 
  border-radius: var(--radius-lg); 
  padding: 12px 32px; 
  font-weight: 600; 
  font-size: 0.95rem; 
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-fb::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.btn-fb:hover::before {
  left: 100%;
}
.btn-fb:hover { 
  background: linear-gradient(135deg, #0284C7 0%, #2563EB 100%);
  color: #fff; 
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}
.btn-fb-outline { 
  background: transparent; 
  color: #fff; 
  border: 2px solid rgba(255,255,255,0.7); 
  border-radius: var(--radius-lg); 
  padding: 12px 32px; 
  font-weight: 600; 
  font-size: 0.95rem; 
  transition: all 0.3s ease;
}
.btn-fb-outline:hover { 
  background: rgba(255,255,255,0.15); 
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-gold { 
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  color: #fff; 
  border: none; 
  border-radius: var(--radius-lg); 
  padding: 12px 32px; 
  font-weight: 600; 
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
}
.btn-gold:hover { 
  background: linear-gradient(135deg, #D97706 0%, #EA580C 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

/* ---------- Back to Top ---------- */
.back-to-top { 
  position: fixed; 
  bottom: 32px; 
  right: 32px; 
  width: 50px; 
  height: 50px; 
  background: var(--gradient-1); 
  color: #fff; 
  border: none; 
  border-radius: 50%; 
  font-size: 1.3rem; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: var(--shadow-xl); 
  cursor: pointer; 
  transition: all 0.3s ease; 
  z-index: 999; 
  opacity: 0; 
  pointer-events: none;
}
.back-to-top.visible { 
  opacity: 1; 
  pointer-events: all;
}
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.5);
}

/* ---------- Utilities ---------- */
.bg-fb-light { background: var(--bg-light); }
.text-fb { color: var(--accent) !important; }
.text-gold { color: var(--accent-gold) !important; }
.border-fb { border-color: var(--accent) !important; }
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero-section h1 { font-size: 2.5rem; }
  .section-header h2 { font-size: 2rem; }
  .page-hero h1 { font-size: 2rem; }
  .cta-banner h2 { font-size: 2rem; }
}
