@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  --navy: #0a1628;
  --navy-light: #122244;
  --navy-mid: #1a2a4a;
  --gold: #c9a84b;
  --gold-light: #e2c56a;
  --gold-dark: #a88a32;
  --cream: #faf8f5;
  --white: #ffffff;
  --text: #2c3e50;
  --text-light: #6b7c93;
  --border: #e8e6e1;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.04);
  --shadow: 0 8px 32px rgba(10,22,40,0.08);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.12);
  --shadow-xl: 0 40px 100px rgba(10,22,40,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, sans-serif;
  --display: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,75,0.08) 0%, transparent 70%);
}
.page-header h1 {
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* === NAVIGATION === */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(24px);
  padding: 10px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.nav-brand-icon { font-size: 1.5rem; }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,75,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(201,168,75,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.6) 50%, rgba(10,22,40,0.88) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,168,75,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}
.hero-text { max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,75,0.12);
  border: 1px solid rgba(201,168,75,0.2);
  color: var(--gold);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-indicators span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition);
}
.hero-indicators span.active {
  background: var(--gold);
  width: 32px;
  border-radius: 4px;
}

/* === SECTION === */
.section { padding: 100px 0; }
.section-alt { background: var(--white); }
.section-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  background: rgba(201,168,75,0.1);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(201,168,75,0.15);
}
.section-dark .section-label {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  color: var(--gold);
}
.section-title {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-dark .section-sub { color: rgba(255,255,255,0.55); }

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  margin: 18px auto 0;
}

/* === HOME PAGE SPECIFIC === */
.home-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-about-text h2 {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.home-about-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.home-about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.home-about-image::before {
  content: '';
  display: block;
  padding-bottom: 75%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
}
.home-about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(201,168,75,0.1), rgba(201,168,75,0.04));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}
.feature-block:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.feature-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-block p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.event-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.event-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.event-img {
  height: 220px;
  position: relative;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
}
.event-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.event-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.event-date {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.event-body { padding: 24px; }
.event-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.event-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; }
.gallery-item-overlay span { color: var(--gold); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; }

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.filter-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

.testimonials {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  min-height: 300px;
}
.testimonial-card {
  text-align: center;
  padding: 48px 40px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  display: none;
}
.testimonial-card.active { display: block; }
.testimonial-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 4px; margin-bottom: 20px; }
.testimonial-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}
.testimonial-content::before { content: '\201C'; font-size: 2.5rem; color: var(--gold); margin-right: 6px; opacity: 0.6; }
.testimonial-content::after { content: '\201D'; font-size: 2.5rem; color: var(--gold); margin-left: 6px; opacity: 0.6; }
.testimonial-name { font-weight: 700; color: var(--white); font-size: 1rem; }
.testimonial-company { color: var(--gold); font-size: 0.85rem; margin-top: 4px; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.testimonial-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dots span.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* === ABOUT PAGE === */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-content h2 {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-story-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-image-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image-box::before {
  content: ''; display: block; padding-bottom: 75%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
}
.about-image-box img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(201,168,75,0.1), rgba(201,168,75,0.04));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
}
.value-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* === EVENTS PAGE === */
.events-list { display: grid; gap: 24px; }
.event-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.event-row:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.event-row-img {
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  position: relative;
}
.event-row-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.event-row-body { padding: 28px 28px 28px 0; }
.event-row-body .event-cat {
  position: static;
  display: inline-block;
  margin-bottom: 10px;
}
.event-row-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.event-row-body p { color: var(--text-light); line-height: 1.7; }
.event-row-body .event-date {
  position: static;
  display: inline-block;
  background: rgba(201,168,75,0.1);
  color: var(--gold);
  border: none;
  padding: 6px 16px;
  margin-top: 14px;
  font-weight: 600;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.contact-info-list {
  display: grid;
  gap: 16px;
}
.contact-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.contact-item-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(201,168,75,0.1), rgba(201,168,75,0.04));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}
.contact-item-text h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 2px; }
.contact-item-text p { font-size: 0.95rem; font-weight: 600; color: var(--navy); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--cream);
  color: var(--text);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,168,75,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.map-section { height: 400px; }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
  font-size: 0.9rem;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p {
  margin-bottom: 12px;
  font-size: 0.9rem;
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-contact i { color: var(--gold); margin-top: 4px; min-width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.2);
}

.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px 28px;
  border-radius: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  max-width: 380px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #059669; }
.toast.error { background: #dc2626; }
.toast.info { background: var(--navy); }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .home-about { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-story { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .event-row { grid-template-columns: 1fr; }
  .event-row-img { min-height: 220px; }
  .event-row-body { padding: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 70px 0; }
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 2.5rem; }
  .page-header h1 { font-size: 2.2rem; }
  .page-header { padding: 130px 0 60px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(10,22,40,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    font-size: 0.95rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-toggle { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-card { padding: 24px 16px; }
  .stat-number { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-values { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
  .event-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.7rem; }
  .page-header h1 { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}
