/* ===================================================================
   AAMSHYA PADAVI - POLITICAL WEBSITE
   Design System & Styles
   =================================================================== */

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

/* ===================================================================
   CSS Custom Properties (Design Tokens)
   =================================================================== */
:root {
  /* Primary Colors - Saffron/Orange */
  --saffron: #FF6B00;
  --saffron-light: #FF8C00;
  --saffron-dark: #E55A00;
  --saffron-glow: rgba(255, 107, 0, 0.15);

  /* Secondary Colors - Green */
  --green: #138808;
  --green-light: #1FAF0F;
  --green-dark: #0E6B06;
  --green-glow: rgba(19, 136, 8, 0.12);

  /* Navy / Dark */
  --navy: #1B2A4A;
  --navy-light: #2A3D66;
  --navy-dark: #0F1D36;

  /* Neutrals */
  --white: #FFFFFF;
  --ivory: #FFF9F0;
  --cream: #FFF5E6;
  --light-gray: #F5F0EB;
  --gray: #8A8A8A;
  --dark-gray: #4A4A4A;
  --text-primary: #1A1A2E;
  --text-secondary: #555555;
  --text-muted: #888888;

  /* Gradients */
  --gradient-saffron: linear-gradient(135deg, #FF6B00, #FF8C00, #FFa500);
  --gradient-navy: linear-gradient(135deg, #1B2A4A, #2A3D66);
  --gradient-hero: linear-gradient(135deg, #1B2A4A 0%, #2A3D66 50%, #FF6B00 100%);
  --gradient-section: linear-gradient(180deg, #FFF9F0 0%, #FFFFFF 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,249,240,0.7));

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
  --shadow-saffron: 0 8px 30px rgba(255, 107, 0, 0.2);
  --shadow-green: 0 8px 30px rgba(19, 136, 8, 0.15);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul, ol {
  list-style: none;
}

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

/* ===================================================================
   Typography
   =================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
}

/* ===================================================================
   Layout Utilities
   =================================================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-ivory {
  background: var(--ivory);
}

.section-cream {
  background: var(--cream);
}

.section-navy {
  background: var(--gradient-navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}

.section-navy p {
  color: rgba(255,255,255,0.85);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-saffron);
  border-radius: 4px;
}

.section-header .subtitle {
  color: var(--saffron);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  display: block;
}

.section-header p {
  max-width: 650px;
  margin: 20px auto 0;
  font-size: 1.1rem;
}

/* Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===================================================================
   Navigation
   =================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-base);
  padding: 0 24px;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.97);
}

.navbar .nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}

.nav-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-saffron);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
}

.nav-logo span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--saffron);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-base);
}

.nav-links a:hover {
  color: var(--saffron);
  background: var(--saffron-glow);
}

.nav-links a.active {
  color: var(--saffron);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.hamburger:hover {
  background: var(--saffron-glow);
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 4px;
  transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================================
   Hero Section
   =================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(19, 136, 8, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-text h1 {
  color: white;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-text h1 .highlight {
  background: var(--gradient-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text .hero-title {
  font-size: 1.2rem;
  color: var(--saffron-light);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.hero-text .hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  font-family: var(--font-accent);
  font-style: italic;
}

.hero-text .hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(5px);
  transition: var(--transition-base);
}

.hero-tags .tag:hover {
  background: rgba(255,107,0,0.2);
  border-color: var(--saffron);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 380px;
  height: 460px;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--saffron);
  border-radius: var(--radius-lg);
  opacity: 0.5;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--green);
  border-radius: var(--radius-lg);
  opacity: 0.4;
}

/* ===================================================================
   Page Hero (for inner pages)
   =================================================================== */
.page-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 72px;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('') center/cover no-repeat;
  opacity: 0.08;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.7);
}

.page-hero .breadcrumb a:hover {
  color: var(--saffron-light);
}

.page-hero .breadcrumb .separator {
  color: rgba(255,255,255,0.4);
}

.page-hero h1 {
  color: white;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero .page-hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-accent);
  font-style: italic;
}

.page-hero-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.08;
}

.page-hero-decoration.dec-1 {
  top: -100px;
  right: -50px;
  background: var(--saffron);
}

.page-hero-decoration.dec-2 {
  bottom: -120px;
  left: -80px;
  background: var(--green);
}

/* ===================================================================
   Buttons
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-saffron);
  color: white;
  box-shadow: var(--shadow-saffron);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 0, 0.35);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
}

.btn-outline:hover {
  background: var(--saffron);
  color: white;
}

/* ===================================================================
   Cards
   =================================================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

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

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-saffron);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.card-icon.saffron {
  background: var(--saffron-glow);
  color: var(--saffron);
}

.card-icon.green {
  background: var(--green-glow);
  color: var(--green);
}

.card-icon.navy {
  background: rgba(27, 42, 74, 0.08);
  color: var(--navy);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* 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: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
}

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

/* Image Card */
.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
}

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

.image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.image-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
}

.image-card .card-overlay h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.image-card .card-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* Stat Card */
.stat-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-slow);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron-glow);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===================================================================
   Timeline
   =================================================================== */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--saffron), var(--green));
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-slow);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--saffron);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px var(--saffron-glow);
  z-index: 2;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 8px;
}

.timeline-content h3 {
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.95rem;
  margin: 0;
}

.timeline-item.victory .timeline-dot {
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-glow);
  width: 26px;
  height: 26px;
}

.timeline-item.victory .timeline-content {
  border: 2px solid var(--green);
  background: linear-gradient(135deg, rgba(19,136,8,0.03), var(--white));
}

/* ===================================================================
   List Styles
   =================================================================== */
.styled-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.styled-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.styled-list li::before {
  content: '✦';
  color: var(--saffron);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.styled-list.green li::before {
  color: var(--green);
}

/* ===================================================================
   Quote Block
   =================================================================== */
.quote-block {
  position: relative;
  padding: 40px 40px 40px 60px;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--saffron);
  margin: 40px 0;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-family: var(--font-accent);
  font-size: 4rem;
  color: var(--saffron);
  opacity: 0.3;
  line-height: 1;
}

.quote-block p {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
}

.quote-block .quote-source {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--saffron);
  font-weight: 600;
}

/* ===================================================================
   Feature List
   =================================================================== */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border: 1px solid rgba(0,0,0,0.03);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.feature-item .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--saffron-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item span {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* ===================================================================
   Content Sections with Image
   =================================================================== */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-with-image.reverse {
  direction: rtl;
}

.content-with-image.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

.content-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255,107,0,0.1);
}

.content-text h2 {
  margin-bottom: 20px;
}

.content-text h2 .text-saffron {
  color: var(--saffron);
}

.content-text .text-intro {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 16px;
}

/* ===================================================================
   Footer
   =================================================================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-about .footer-logo .logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gradient-saffron);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
}

.footer-about p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--saffron);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--saffron-light);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-contact-item .fc-icon {
  color: var(--saffron);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-credits {
  text-align: right;
}

.footer-credits a {
  color: var(--saffron-light);
  font-weight: 600;
}

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

.footer-credits p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ===================================================================
   Scroll Reveal Animations
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   Keyframe Animations
   =================================================================== */
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Page load animation */
.page-transition {
  animation: fadeIn 0.5s ease;
}

/* ===================================================================
   CTA Section
   =================================================================== */
.cta-section {
  background: var(--gradient-hero);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.1), transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.cta-section .btn {
  position: relative;
  z-index: 2;
}

/* ===================================================================
   Contact Page
   =================================================================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-slow);
}

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

.contact-card .contact-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  background: var(--saffron-glow);
  color: var(--saffron);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Map Container */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  background: var(--light-gray);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================================================
   Media Page
   =================================================================== */
.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-slow);
}

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

.media-card .media-thumbnail {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.media-card .media-body {
  padding: 24px;
}

.media-card .media-type {
  display: inline-block;
  padding: 4px 14px;
  background: var(--saffron-glow);
  color: var(--saffron);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.media-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* ===================================================================
   Responsive Design
   =================================================================== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    gap: 40px;
  }

  .hero-image-wrapper {
    width: 320px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  /* Navigation Mobile */
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: var(--transition-slow);
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
    padding: 14px 20px;
    width: 100%;
    border-radius: var(--radius-md);
  }

  .hamburger {
    display: flex;
  }

  /* Hero Mobile */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-wrapper {
    width: 240px;
    height: 300px;
  }

  .hero-text .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  /* Grid Mobile */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .content-with-image {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-with-image.reverse {
    direction: ltr;
  }

  /* Timeline Mobile */
  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 50px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-dot {
    left: 20px;
  }

  /* Cards */
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-credits {
    text-align: center;
  }

  /* Page Hero */
  .page-hero {
    min-height: 320px;
  }

  .quote-block {
    padding: 30px 20px 30px 40px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .card {
    padding: 24px;
  }

  .stat-value {
    font-size: 2.2rem;
  }

  .hero-image-wrapper {
    width: 200px;
    height: 260px;
  }
}
