/* ==========================================
   ABOUT PREMIUM STYLES
   ========================================== */
:root {
  --primary-green: #3b82f6;
  --primary-dark: #2563eb;
  --secondary-emerald: #60a5fa;
  --accent-teal: #0ea5e9;
  --accent-blue: #06b6d4;
  --text-dark: #1f2937;
  --text-light: #17181ae9;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --gradient-about: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(59, 130, 246, 0.88) 0%, rgba(99, 102, 241, 0.88) 100%);
}

/* ==========================================
   RESET & BASE
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-light);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.main-content {
  margin-top: 120px;
  min-height: 100vh;
  transition: margin-top 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/images/quiz-three.webp') center/cover no-repeat;
    overflow: hidden;
    padding: 6rem 2rem;
    width: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Animated particles and glow effects */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-30px) scale(1.1);
        opacity: 0.8;
    }
}

/* Overlay with mesh gradient effect */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at top, transparent 0%, rgba(15, 23, 42, 0.3) 100%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
    backdrop-filter: blur(1px);
}

/* --- Hero Content --- */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

/* Badge Animation */
.article-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: badgeEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all 0.3s ease;
}

.article-badge:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@keyframes badgeEntrance {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    70% {
        transform: translateY(5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero Title with stunning animation */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.3);
    animation: titleEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    70% {
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.6;
        width: 120px;
    }
    50% {
        opacity: 1;
        width: 180px;
    }
}

/* Hero Subtitle with premium styling */
.hero-subtitle {
    display: inline-block;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 3rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: subtitleEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
    position: relative;
    overflow: hidden;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes subtitleEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* --- Hero Stats (Premium Cards) --- */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: statsEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

@keyframes statsEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding: 1.75rem 2.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    min-width: 160px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Hover glow effect */
.stat-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.3) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.stat-item i {
    font-size: 2.5rem;
    opacity: 0.95;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.stat-item span {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

   /* ==========================================
   MISSION SECTION
   ========================================== */

.mission-section {
  padding: 4rem 0;
  background: var(--white);
}

.mission-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: blanchedalmond;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-about);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.mission-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.mission-text p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ==========================================
   STATS SECTION
   ========================================== */

.stats-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-about);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: blanchedalmond;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ==========================================
   SECTION HEADER
   ========================================== */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-about);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* ==========================================
   TEAM SECTION
   ========================================== */

.team-section {
  padding: 4rem 0;
  background: var(--white);
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: blanchedalmond;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}

.founder-image {
  width: 150px;
  height: 150px;
  background: var(--gradient-about);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.founder-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.founder-title {
  font-size: 1.125rem;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.founder-bio {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.appreciation-section {
  text-align: center;
  margin: 3rem 0;
}

.appreciation-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

.appreciation-title i {
  color: #ef4444;
  font-size: 1.5rem;
}

.appreciation-text {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.team-card-icon {
  width: 60px;
  height: 60px;
  background: blanchedalmond;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}

.team-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--gradient-about);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.gratitude-message {
  background: rgba(205, 127, 100, 0.4);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 3rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.gratitude-message p {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.gratitude-message p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   PURPOSE SECTION
   ========================================== */

.purpose-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.content-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.content-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.content-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-about);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.content-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.content-card p {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.8;
}

.highlight-box {
  background: rgba(205, 127, 100, 0.4);
  border-left: 4px solid #3b82f6;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-box i {
  color: #3b82f6;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.highlight-box p {
  margin: 0;
  color: var(--text-dark);
}

/* ==========================================
   FUTURE SECTION
   ========================================== */

.future-section {
  padding: 4rem 0;
  background: var(--white);
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.future-card {
  background: var(--white);
  border: 2px solid #e5e7eb;
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.future-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.future-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-about);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}

.future-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.future-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================
   DISCLAIMER SECTION
   ========================================== */

.disclaimer-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.disclaimer-card {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-left: 4px solid #ef4444;
  padding: 3rem;
  border-radius: 20px;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  flex-shrink: 0;
}

.disclaimer-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.disclaimer-content p {
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.ai-notice {
  background: blanchedalmond;
  border-left: 4px solid #3b82f6;
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ai-notice i {
  font-size: 2.5rem;
  color: #3b82f6;
}

.ai-notice p {
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
  padding: 4rem 0;
  background: var(--white);
}

.contact-card {
  background: blanchedalmond;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.contact-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.contact-card > p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.contact-btn.phone {
  background: var(--gradient-about);
  color: var(--white);
}

.contact-btn.phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.contact-btn.instagram {
  background: linear-gradient(135deg, #f56565 0%, #ed64a6 100%);
  color: var(--white);
}

.contact-btn.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245, 101, 101, 0.3);
}

.contact-btn i {
  font-size: 1.25rem;
}

/* ==========================================
   THANK YOU SECTION
   ========================================== */

.thankyou-section {
  padding: 4rem 0;
  background: blanchedalmond;
}

.thankyou-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.thankyou-content i {
  font-size: 4rem;
  color: #da0c0c;
  margin-bottom: 1.5rem;
  animation: heartbeat 1.5s ease infinite;
}


.thankyou-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

.thankyou-content p {
  font-size: 1.2rem;
  color: black;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-about);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.home-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.home-btn i {
  font-size: 1.25rem;
}

/* ==========================================
   FOOTER
   ========================================== */

.page-footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 2rem;
  margin-left: -280px;
  font-size: 0.9375rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer-links span {
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   BACK TO TOP
   ========================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--gradient-about);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(100px);
}

.back-to-top.visible {
  display: flex !important;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {

  .page-footer {
    margin-left: 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .founder-card {
    flex-direction: column;
    text-align: center;
  }

  .mission-content {
    flex-direction: column;
    text-align: center;
  }

  .disclaimer-card {
    flex-direction: column;
  }

  .ai-notice {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        padding: 4rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem 1.75rem;
        min-width: 140px;
    }
    
    .stat-item i {
        font-size: 2rem;
    }
    
    .stat-item span {
        font-size: 1rem;
    }

  .section-header h2 {
    font-size: 2rem;
  }

  .mission-content {
    padding: 2rem;
  }

  .mission-text h2 {
    font-size: 1.5rem;
  }

  .mission-text p {
    font-size: 1rem;
  }

  .founder-card {
    padding: 2rem;
  }

  .founder-info h3 {
    font-size: 1.5rem;
  }

  .content-card {
    padding: 2rem;
  }

  .content-card h2 {
    font-size: 1.5rem;
  }

  .disclaimer-card {
    padding: 2rem;
  }

  .contact-methods {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  .thankyou-content h2 {
    font-size: 2rem;
  }

  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 450px;
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    .stat-item {
        width: 100%;
        padding: 1.25rem;
    }

  .stat-number {
    font-size: 2.5rem;
  }

  .team-grid,
  .stats-grid,
  .future-grid {
    grid-template-columns: 1fr;
  }

  .appreciation-title {
    font-size: 1.5rem;
    flex-direction: column;
  }
}

.mobile-menu-toggle {
  background: var(--gradient-about); /* Use the page's gradient variable */
}

.desktop-nav-toggle {
  background: var(--gradient-about); /* Use the page's gradient variable */
}


