/* ============================================
   SUNRISE UNIVERSAL FUTURE - Main Stylesheet
   Healthcare & Wellness Website
   Palette matched to the brand logo: royal blue, sun gold, leaf green
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --royal-blue: #1848b8;
  --royal-blue-light: #3b6fe0;
  --deep-navy: #0b2a5a;
  --navy-mid: #123a78;
  --gold: #e0b124;
  --gold-light: #f4d35e;
  --gold-dark: #c4920e;
  --emerald: #2d9a44;
  --emerald-light: #48c15f;
  --leaf: #2d9a44;
  --white: #ffffff;
  --off-white: #f6faf7;
  --gray-50: #f1f5f9;
  --gray-100: #e2e8f0;
  --gray-200: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gradient-primary: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-navy) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --gradient-emerald: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
  --gradient-health: linear-gradient(135deg, var(--deep-navy) 0%, var(--royal-blue) 52%, var(--emerald) 100%);
  --shadow-sm: 0 2px 8px rgba(11, 42, 90, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 42, 90, 0.1);
  --shadow-lg: 0 20px 60px rgba(11, 42, 90, 0.15);
  --shadow-gold: 0 8px 30px rgba(224, 177, 36, 0.28);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--deep-navy);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.text-gold { color: var(--gold); }
.text-blue { color: var(--royal-blue); }
.text-emerald { color: var(--emerald); }
.text-navy { color: var(--deep-navy); }

.bg-navy { background: var(--deep-navy); }
.bg-off-white { background: var(--off-white); }
.bg-gray { background: var(--gray-50); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin-bottom: 0;
}

/* ---------- Buttons ---------- */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn-premium:hover::before {
  transform: translateX(0);
}

.btn-primary-gold {
  background: var(--gradient-gold);
  color: var(--deep-navy);
  box-shadow: var(--shadow-gold);
}

.btn-primary-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(224, 177, 36), 0.4);
  color: var(--deep-navy);
}

.btn-primary-blue {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(24, 72, 184), 0.3);
}

.btn-primary-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(24, 72, 184), 0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--deep-navy);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--deep-navy);
  border: 2px solid var(--deep-navy);
}

.btn-outline-dark:hover {
  background: var(--deep-navy);
  color: var(--white);
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  margin-bottom: 20px;
}

.preloader-logo img {
  width: 160px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-gold);
  border-radius: 3px;
  animation: preloaderFill 1.5s ease forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--deep-navy);
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar i {
  color: var(--gold);
  margin-right: 6px;
}

.offer-strip {
  background: var(--gradient-gold);
  color: var(--deep-navy);
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 7px 12px;
}

.offer-strip i {
  margin-right: 8px;
}

.offer-banner {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(224, 177, 36, 0.18));
  border: 1px solid rgba(224, 177, 36, 0.35);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  margin-bottom: 32px;
}

.offer-banner h3 {
  margin-bottom: 4px;
  color: #b91c1c;
}

.offer-banner p {
  margin: 0;
  color: var(--gray-600);
}

.product-badge-sale {
  position: absolute;
  top: 16px;
  right: 16px;
  left: auto;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
}

.why-card .lang-sub,
.benefit-card .lang-sub {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-size: 0.88rem;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact-list i {
  color: var(--gold);
  margin-top: 4px;
  min-width: 16px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact-list a:hover {
  color: var(--gold);
}

/* ---------- Navigation ---------- */
.navbar-main {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar-main.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gray-100);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text h1 {
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.2;
}

.brand-text span {
  font-size: 0.7rem;
  color: var(--gray-600);
  font-weight: 400;
  display: block;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 8px 16px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--royal-blue);
}

.nav-cta .btn-premium {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.nav-auth-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600 !important;
}

.nav-login i {
  font-size: 0.85rem;
}

.btn-register-nav {
  padding: 10px 22px !important;
  font-size: 0.85rem !important;
}

/* ---------- Auth Pages ---------- */
.auth-section {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: flex-start;
  padding: 32px 0 60px;
  background: linear-gradient(135deg, var(--off-white) 0%, rgba(24, 72, 184), 0.06) 100%);
  position: relative;
  overflow: hidden;
}

.auth-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(224, 177, 36), 0.06);
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 40px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  position: relative;
  z-index: 1;
}

.auth-card-header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-card-header img {
  width: 72px;
  height: auto;
  margin: 0 auto 16px;
  object-fit: contain;
}

.auth-card-header h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.auth-card-header p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
}

.login-details-welcome {
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 24px;
  text-align: center;
}

.login-details-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
}

.login-details-table th,
.login-details-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
}

.login-details-table tr:last-child th,
.login-details-table tr:last-child td {
  border-bottom: none;
}

.login-details-table th {
  width: 42%;
  text-align: left;
  font-weight: 600;
  color: var(--deep-navy);
  background: var(--off-white);
}

.login-details-table td {
  color: var(--gray-800);
  font-weight: 600;
}

.login-details-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}

.login-details-actions .btn-premium {
  flex: 1 1 0;
  justify-content: center;
  padding: 12px 14px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--gray-400);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.auth-footer-text {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.auth-footer-text a {
  color: var(--royal-blue);
  font-weight: 600;
}

.auth-footer-text a:hover {
  color: var(--gold);
}

.form-check-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.form-check-custom input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--royal-blue);
}

.forgot-link {
  font-size: 0.85rem;
  color: var(--royal-blue);
  font-weight: 500;
}

.forgot-link:hover {
  color: var(--gold);
}

.auth-benefits {
  padding: 8px 40px 32px 0;
}

.auth-benefits h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.auth-benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.auth-benefit-item i {
  width: 44px;
  height: 44px;
  background: rgba(24, 72, 184), 0.1);
  color: var(--royal-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auth-benefit-item h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.auth-benefit-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

.password-toggle {
  position: relative;
}

.password-toggle .toggle-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 4px;
}

.password-toggle .toggle-btn:hover {
  color: var(--royal-blue);
}

.password-toggle .form-control-custom {
  padding-right: 44px;
}

.auth-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(24, 72, 184), 0.1);
  color: var(--royal-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.forgot-success {
  text-align: center;
  padding: 24px 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.forgot-success-icon {
  font-size: 3rem;
  color: var(--emerald);
  margin-bottom: 12px;
}

.forgot-success h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.forgot-success p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 8px;
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep-navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 42, 90, 0.93) 0%, rgba(24, 72, 184, 0.55) 55%, rgba(45, 154, 68, 0.32) 100%);
  z-index: 1;
}

#particles-js {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-stat-item h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-stat-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 2;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: -100px;
  right: -100px;
  animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--royal-blue-light);
  bottom: -50px;
  left: -50px;
  animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--emerald);
  top: 50%;
  right: 10%;
  animation: floatShape 6s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ---------- About Summary ---------- */
.about-summary {
  position: relative;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-banner-wrap img {
  height: auto;
  object-fit: contain;
  background: #fff;
}

.about-experience {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gradient-gold);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-experience h3 {
  font-size: 2.5rem;
  color: var(--deep-navy);
  margin-bottom: 0;
}

.about-experience p {
  font-size: 0.85rem;
  color: var(--navy-mid);
  margin: 0;
  font-weight: 600;
}

.about-content .lead {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-item i {
  width: 40px;
  height: 40px;
  background: rgba(24, 72, 184), 0.1);
  color: var(--royal-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---------- Why Choose Us ---------- */
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(24, 72, 184), 0.1) 0%, rgba(224, 177, 36), 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--royal-blue);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1);
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

/* ---------- Venture Cards ---------- */
.venture-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.venture-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.venture-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.venture-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.venture-card:hover .venture-card-img img {
  transform: scale(1.1);
}

.venture-card-icon {
  position: absolute;
  bottom: -24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: var(--gradient-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--deep-navy);
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.venture-card-body {
  padding: 36px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.venture-card-body h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.venture-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 16px;
}

.venture-card-body .read-more {
  font-weight: 600;
  color: var(--royal-blue);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.venture-card-body .read-more:hover {
  color: var(--gold);
  gap: 10px;
}

/* ---------- Product Cards ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-gold);
  color: var(--deep-navy);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-badge.badge-juice {
  background: var(--gradient-emerald);
  color: var(--white);
}

.product-badge.badge-liquid {
  background: var(--gradient-primary);
  color: var(--white);
}

.product-badge.badge-powder {
  background: var(--gradient-gold);
  color: var(--deep-navy);
}

.product-benefits span {
  font-size: 0.75rem;
  background: rgba(45, 154, 68, 0.08);
  color: var(--emerald);
  padding: 4px 10px;
  border-radius: 50px;
}

.health-disclaimer {
  background: var(--off-white);
  border: 1px solid rgba(24, 72, 184, 0.12);
  border-left: 4px solid var(--emerald);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.health-disclaimer strong {
  color: var(--deep-navy);
}

.product-card-body {
  padding: 24px;
}

.product-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.product-filter-item {
  transition: opacity 0.3s ease;
}

/* ---------- Statistics ---------- */
.stats-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.stats-section::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");
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ---------- Vision Mission Values ---------- */
.vmv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.vmv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.vmv-card.vision::before { background: var(--royal-blue); }
.vmv-card.mission::before { background: var(--emerald); }
.vmv-card.values::before { background: var(--gold); }

.vmv-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.vmv-card.vision .vmv-icon {
  background: rgba(24, 72, 184), 0.1);
  color: var(--royal-blue);
}

.vmv-card.mission .vmv-icon {
  background: rgba(5, 150, 105, 0.1);
  color: var(--emerald);
}

.vmv-card.values .vmv-icon {
  background: rgba(224, 177, 36), 0.1);
  color: var(--gold-dark);
}

.vmv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.vmv-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.lang-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.lang-tab {
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-600);
}

.lang-tab.active,
.lang-tab:hover {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
}

.lang-content {
  display: none;
}

.lang-content.active {
  display: block;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

.value-item:last-child {
  border-bottom: none;
}

.value-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ---------- Achievements ---------- */
.achievement-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.achievement-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.achievement-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.achievement-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  margin: 20px 10px;
  border: 1px solid var(--gray-100);
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.testimonial-author h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.testimonial-rating {
  color: var(--gold);
  margin-bottom: 16px;
}

.testimonial-video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.testimonial-video-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--deep-navy);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ---------- Gallery ---------- */
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-bottom: 24px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h5 {
  color: var(--white);
  font-size: 1rem;
  margin: 0;
}

.gallery-overlay span {
  color: var(--gold);
  font-size: 0.8rem;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 24px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-600);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--deep-navy);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--royal-blue);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--gold);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- News ---------- */
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-card-img {
  height: 200px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 24px;
}

.news-date {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.news-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.news-card:hover h4 {
  color: var(--royal-blue);
}

.news-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.read-more-link {
  font-weight: 600;
  color: var(--royal-blue);
  font-size: 0.9rem;
}

.read-more-link:hover {
  color: var(--gold);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient-health);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(224, 177, 36), 0.1);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ---------- Page Header (Inner Pages) ---------- */
.page-header {
  background: var(--gradient-health);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::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");
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  position: relative;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  position: relative;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  position: relative;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.breadcrumb-nav a:hover {
  color: var(--gold);
}

.breadcrumb-nav span {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
  width: 50%;
  position: relative;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
}

.timeline-dot {
  position: absolute;
  right: -8px;
  top: 28px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -8px;
}

.timeline-content {
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 90%;
  position: relative;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-content h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

/* ---------- Opportunity Page ---------- */
.opportunity-hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--gradient-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--deep-navy);
}

.process-step {
  text-align: center;
  position: relative;
  padding: 20px;
}

.process-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.process-step h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.growth-chart {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.chart-bar {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  height: 250px;
  padding-top: 20px;
}

.chart-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.chart-bar-fill {
  width: 100%;
  background: var(--gradient-primary);
  border-radius: 8px 8px 0 0;
  transition: height 1.5s ease;
  min-height: 20px;
}

.chart-bar-item span {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* ---------- Contact Page ---------- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-info-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(24, 72, 184), 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--royal-blue);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-control-custom {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--off-white);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(24, 72, 184), 0.1);
  background: var(--white);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--deep-navy);
}

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

@keyframes pulseWhatsApp {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  color: var(--white);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--deep-navy);
  transform: translateY(-3px);
}

.contact-social a {
  background: rgba(24, 72, 184, 0.1);
  color: var(--royal-blue);
}

.contact-social a:hover {
  background: var(--gold);
  color: var(--deep-navy);
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--gold);
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--gradient-gold);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--deep-navy);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ---------- Founder Message ---------- */
.founder-section {
  background: var(--off-white);
}

.founder-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.founder-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.founder-quote {
  font-size: 1.1rem;
  color: var(--gray-600);
  font-style: italic;
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  margin: 24px 0;
  line-height: 1.8;
}

.founder-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--deep-navy);
  font-size: 1.1rem;
}

.founder-designation {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---------- Ethics Cards ---------- */
.ethics-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--emerald);
  transition: var(--transition);
  height: 100%;
}

.ethics-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.ethics-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ethics-card h4 i {
  color: var(--emerald);
}

.ethics-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

/* ---------- Future Goals ---------- */
.goal-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.goal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.goal-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.goal-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.goal-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ---------- Business Opportunity Preview ---------- */
.opportunity-preview {
  background: linear-gradient(135deg, var(--off-white) 0%, rgba(24, 72, 184), 0.05) 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.opportunity-preview::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(224, 177, 36), 0.08);
  border-radius: 50%;
  top: -100px;
  right: -50px;
}

/* ---------- Slider Dots ---------- */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--royal-blue);
  width: 30px;
  border-radius: 5px;
}
