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

/* ========== CSS Variables ========== */
:root {
  /* Core palette - Warm Orange Theme */
  --background: hsl(30, 50%, 98%);
  --foreground: hsl(25, 25%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(25, 25%, 20%);
  
  /* Primary - Vibrant Orange */
  --primary: hsl(24, 95%, 53%);
  --primary-foreground: hsl(0, 0%, 100%);
  
  /* Secondary - Soft Peach */
  --secondary: hsl(25, 80%, 95%);
  --secondary-foreground: hsl(24, 95%, 35%);
  
  /* Muted - Warm Gray */
  --muted: hsl(30, 20%, 94%);
  --muted-foreground: hsl(25, 15%, 45%);
  
  /* Accent - Coral */
  --accent: hsl(16, 85%, 60%);
  --accent-foreground: hsl(0, 0%, 100%);
  
  --border: hsl(30, 30%, 88%);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(24, 95%, 53%) 0%, hsl(16, 85%, 60%) 100%);
  --gradient-secondary: linear-gradient(135deg, hsl(25, 80%, 95%) 0%, hsl(30, 50%, 98%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(30, 50%, 98%) 0%, hsl(25, 80%, 95%) 100%);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -4px hsla(24, 95%, 53%, 0.15);
  --shadow-medium: 0 8px 30px -8px hsla(24, 95%, 53%, 0.2);
  --shadow-glow: 0 0 40px hsla(24, 95%, 53%, 0.3);
  
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========== Utilities ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-hero {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-medium);
}

.btn-hero:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  border-radius: 0.875rem;
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.875rem;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.logo:hover .logo-icon {
  box-shadow: var(--shadow-medium);
}

.logo-icon span {
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  display: none;
  font-size: 1.125rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: block;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-inner {
  padding: 1.5rem 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 1rem;
}

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

.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-decoration-1 {
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  background: hsla(24, 95%, 53%, 0.1);
}

.hero-decoration-2 {
  bottom: 80px;
  right: 40px;
  width: 384px;
  height: 384px;
  background: hsla(16, 85%, 60%, 0.1);
}

.hero-decoration-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: var(--secondary);
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 80px;
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
  padding-bottom: 10rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary-foreground);
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 2.25rem;
  }
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

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

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

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

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 672px;
  margin: 0 auto;
}

/* ========== About Section ========== */
.about {
  background: var(--card);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-card {
  background: var(--background);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.about-card:hover {
  box-shadow: var(--shadow-medium);
}

.about-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.about-card:hover .about-card-icon {
  transform: scale(1.1);
}

.about-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-foreground);
}

.about-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.about-commitment {
  margin-top: 4rem;
  background: var(--gradient-primary);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .about-commitment {
    padding: 3rem;
  }
}

.about-commitment h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-commitment h3 {
    font-size: 1.875rem;
  }
}

.about-commitment p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== Services Section ========== */
.services {
  position: relative;
  overflow: hidden;
}

.services-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.services-decoration-1 {
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: hsla(24, 95%, 53%, 0.05);
  transform: translate(50%, -50%);
}

.services-decoration-2 {
  bottom: 0;
  left: 0;
  width: 384px;
  height: 384px;
  background: hsla(16, 85%, 60%, 0.05);
  transform: translate(-50%, 50%);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: hsla(24, 95%, 53%, 0.3);
  box-shadow: var(--shadow-medium);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--secondary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: var(--gradient-primary);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.service-card:hover .service-card-icon svg {
  color: var(--primary-foreground);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ========== Stats Section ========== */
.stats {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.stats-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stats-decoration {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.stats-decoration-1 {
  top: 40px;
  left: 40px;
  width: 128px;
  height: 128px;
}

.stats-decoration-2 {
  bottom: 40px;
  right: 40px;
  width: 192px;
  height: 192px;
}

.stats-decoration-3 {
  top: 50%;
  left: 25%;
  width: 80px;
  height: 80px;
  border-color: rgba(255, 255, 255, 0.1);
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.stats-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .stats-header h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .stats-header h2 {
    font-size: 3rem;
  }
}

.stats-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 672px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 3.75rem;
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ========== Partners Section ========== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.partner-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: hsla(24, 95%, 53%, 0.3);
  box-shadow: var(--shadow-soft);
}

.partner-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-align: center;
}

/* ========== CTA Section ========== */
.cta {
  position: relative;
  overflow: hidden;
}

.cta-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-decoration-1 {
  top: 0;
  left: 25%;
  width: 384px;
  height: 384px;
  background: hsla(24, 95%, 53%, 0.05);
}

.cta-decoration-2 {
  bottom: 0;
  right: 25%;
  width: 384px;
  height: 384px;
  background: hsla(16, 85%, 60%, 0.05);
}

.cta-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 4rem;
  }
}

.cta-card .section-tag {
  margin-bottom: 1rem;
}

.cta-card h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-card h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-card h2 {
    font-size: 3rem;
  }
}

.cta-card p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 672px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ========== Contact Section ========== */
.contact {
  background: var(--card);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--background);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-item h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--muted-foreground);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--background);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(24, 95%, 53%, 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.contact-form-wrapper .btn {
  width: 100%;
}

/* ========== Footer ========== */
.footer {
  background: var(--foreground);
  color: var(--primary-foreground);
}

.footer-wave {
  position: relative;
  margin-top: -1px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.footer-content {
  padding: 4rem 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon span {
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-logo-text .highlight {
  color: var(--primary);
  margin-left: 0.25rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

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

/* ========== Edital Page ========== */
.edital-page {
  min-height: 100vh;
  background: var(--background);
}

.edital-content {
  padding-top: 128px;
  padding-bottom: 6rem;
}

.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.breadcrumb svg {
  width: 16px;
  height: 16px;
}

.edital-header {
  text-align: center;
  margin-bottom: 4rem;
}

.document-card {
  max-width: 672px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .document-card {
    padding: 3rem;
  }
}

.document-icon {
  width: 96px;
  height: 96px;
  background: var(--gradient-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-glow);
}

.document-icon svg {
  width: 48px;
  height: 48px;
  color: var(--primary-foreground);
}

.document-info {
  text-align: center;
  margin-bottom: 2rem;
}

.document-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.document-info p {
  color: var(--muted-foreground);
}

.document-details {
  background: hsla(25, 80%, 95%, 0.5);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.document-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-size: 0.875rem;
}

.document-details-grid span:first-child {
  color: var(--muted-foreground);
}

.document-details-grid .value {
  font-weight: 500;
  color: var(--foreground);
  margin-left: 0.5rem;
}

.document-details-grid .status {
  color: var(--primary);
}

.document-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .document-buttons {
    flex-direction: row;
  }
}

.document-buttons .btn {
  flex: 1;
}

.edital-footer-text {
  max-width: 672px;
  margin: 3rem auto 0;
  text-align: center;
  color: var(--muted-foreground);
}

.edital-footer-text a {
  color: var(--primary);
  transition: text-decoration 0.3s ease;
}

.edital-footer-text a:hover {
  text-decoration: underline;
}

/* ========== Toast Notification ========== */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
}

.toast {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-medium);
  border-left: 4px solid var(--primary);
  animation: slideIn 0.3s ease;
  display: none;
}

.toast.show {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========== Animations on Scroll ========== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}
