/* Freemason Tanzania - Main Stylesheet */

/* CSS Variables for Theme */
:root {
  /* Light Theme (default) - Professional & Trustworthy */
  --background: #faf9f7;
  --background-secondary: #ffffff;
  --background-tertiary: #f0ebe3;
  --foreground: #0a1628;
  --foreground-muted: #4a5568;
  --primary: #b8860b;
  --primary-hover: #996f09;
  --primary-light: #daa520;
  --accent: #0f2744;
  --accent-light: #1a3a5c;
  --accent-dark: #091a2e;
  --border: #d4c5a9;
  --border-light: #e8dcc8;
  --card-bg: #ffffff;
  --card-shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
  --card-shadow-hover: 0 16px 48px rgba(10, 22, 40, 0.18);
  --overlay: linear-gradient(135deg, rgba(15, 39, 68, 0.92) 0%, rgba(10, 22, 40, 0.95) 100%);
  --overlay-light: rgba(15, 39, 68, 0.75);
  --success: #166534;
  --success-light: #22c55e;
  --whatsapp: #25d366;
  --gold-gradient: linear-gradient(135deg, #b8860b 0%, #daa520 50%, #b8860b 100%);
  --navy-gradient: linear-gradient(135deg, #0f2744 0%, #1a3a5c 50%, #0f2744 100%);
  --text-gold: #8b6914;
}

[data-theme="dark"] {
  --background: #050a10;
  --background-secondary: #0a1420;
  --background-tertiary: #0f1e30;
  --foreground: #f8f6f0;
  --foreground-muted: #a0aec0;
  --primary: #daa520;
  --primary-hover: #f0c040;
  --primary-light: #ecd278;
  --accent: #1e4976;
  --accent-light: #2d6aa3;
  --accent-dark: #0f2744;
  --border: #1e3a5c;
  --border-light: #2d4f7a;
  --card-bg: #0a1628;
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --card-shadow-hover: 0 16px 48px rgba(218, 165, 32, 0.15);
  --overlay: linear-gradient(135deg, rgba(5, 10, 16, 0.95) 0%, rgba(10, 20, 32, 0.98) 100%);
  --overlay-light: rgba(5, 10, 16, 0.85);
  --success: #22c55e;
  --success-light: #4ade80;
  --whatsapp: #25d366;
  --gold-gradient: linear-gradient(135deg, #daa520 0%, #f0c040 50%, #daa520 100%);
  --navy-gradient: linear-gradient(135deg, #0f2744 0%, #1e4976 50%, #0f2744 100%);
  --text-gold: #daa520;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  text-wrap: pretty;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.nav-logo:hover {
  color: var(--primary);
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  transition: background-color 0.2s ease;
}

.theme-toggle:hover {
  background-color: var(--border);
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
}

.sun-icon {
  display: none;
}

[data-theme="dark"] .sun-icon {
  display: block;
}

[data-theme="dark"] .moon-icon {
  display: none;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background);
  z-index: 999;
  padding: 2rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0a1628;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #996f09 0%, #b8860b 50%, #996f09 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}
.login {
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 10px;
  border: solid rgba(184, 134, 11, 0.3);
  background: var(--gold-gradient);
  color: #0a1628;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.login:hover {
  background: linear-gradient(135deg, #996f09 0%, #b8860b 50%, #996f09 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.btn-secondary {
  background: var(--navy-gradient);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(15, 39, 68, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #1a3a5c 0%, #2d6aa3 50%, #1a3a5c 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15, 39, 68, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-outline:hover {
  background: var(--gold-gradient);
  color: #0a1628;
  border-color: transparent;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 73px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: #fff;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--foreground-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Statistics */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.stat-label {
  color: var(--foreground-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background-color: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-light);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
}

.card:hover::before {
  opacity: 1;
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  margin-bottom: 0.75rem;
}

.card-content p {
  color: var(--foreground-muted);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: 14px;
  color: #0a1628;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.25);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-content h4 {
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--foreground-muted);
  font-size: 0.9375rem;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--foreground-muted);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Registration Steps */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #000;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
}

.step-content h4 {
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--foreground-muted);
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay);
}

.cta-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: var(--accent-dark);
  border-top: 4px solid var(--primary);
  padding: 4rem 0 2rem;
  color: #fff;
}

.footer h4 {
  color: var(--primary);
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.75);
}

.footer a:hover {
  color: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--foreground-muted);
  margin-top: 1rem;
  max-width: 300px;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-brand .nav-logo span {
  color: #fff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: var(--gold-gradient);
  transform: translateY(-3px);
  color: #0a1628;
}

.social-links a svg {
  width: 20px;
  height: 20px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.whatsapp-btn, .chat-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn {
  background-color: var(--whatsapp);
  color: #fff;
}

.chat-btn {
  background-color: var(--accent);
  color: #fff;
}

.whatsapp-btn:hover, .chat-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn svg, .chat-btn svg {
  width: 24px;
  height: 24px;
}

/* Page Header */
.page-header {
  position: relative;
  padding: 10rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-gradient);
  z-index: -1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gold-gradient);
}

.page-header h1 {
  margin-bottom: 1rem;
  color: #fff;
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* About Page Specific */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 50%;
  color: #000;
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

/* Services Page Specific */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.service-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 16px;
  color: #000;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-content h3 {
  margin-bottom: 0.75rem;
}

.service-content p {
  color: var(--foreground-muted);
}

/* Help Page Specific */
.help-notice {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 3rem;
}

.help-notice h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.help-notice p {
  opacity: 0.9;
}

.requirements-list {
  list-style: none;
  padding: 0;
}

.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.requirements-list li:last-child {
  border-bottom: none;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--success);
  color: #fff;
  border-radius: 50%;
}

.check-icon svg {
  width: 14px;
  height: 14px;
}

/* Pricing Card */
.pricing-section {
  background-color: var(--background-secondary);
  padding: 4rem 0;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.pricing-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #000;
  padding: 2rem;
  text-align: center;
}

.pricing-header h3 {
  margin-bottom: 0.5rem;
}

.pricing-body {
  padding: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features svg {
  width: 20px;
  height: 20px;
  color: var(--success);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-intro {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }
  
  .whatsapp-btn span, .chat-btn span {
    display: none;
  }
  
  .whatsapp-btn, .chat-btn {
    padding: 1rem;
    border-radius: 50%;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Warning/Notice Box */
.warning-box {
  background-color: #fef3cd;
  border: 1px solid #ffc107;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

[data-theme="dark"] .warning-box {
  background-color: #3d3000;
  border-color: #ffc107;
}

.warning-box h4 {
  color: #856404;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .warning-box h4 {
  color: #ffc107;
}

.warning-box p {
  color: #856404;
}

[data-theme="dark"] .warning-box p {
  color: #e0a800;
}

/* Image with overlay text */
.image-banner {
  position: relative;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  margin: 2rem 0;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-gradient);
  z-index: -1;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
  color: #fff;
}

.testimonials-section .section-header p {
  opacity: 0.85;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(218, 165, 32, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  opacity: 0.5;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-author-info h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author-info span {
  color: var(--primary);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Gold Accent Line */
.gold-line {
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

/* Enhanced Section Headers */
.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header.has-line h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Leadership Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.leader-card {
  text-align: center;
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
}

.leader-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

.leader-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--card-bg), transparent);
}

.leader-info {
  padding: 1.5rem 2rem 2rem;
  position: relative;
  margin-top: -2rem;
}

.leader-info h3 {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.leader-info .role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}
