/* ==========================================================================
   Dufferin Farm Tour - Authentic Standalone Application Styles
   ========================================================================== */

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

:root {
  /* Color Tokens */
  --primary: hsl(353, 75%, 25%);
  --primary-dark: hsl(353, 80%, 15%);
  --primary-light: hsl(353, 65%, 35%);
  --accent: hsl(0, 0%, 45%);
  --accent-hover: hsl(0, 0%, 30%);
  --accent-soft: rgba(115, 115, 115, 0.15);
  
  --gold: #D4A017;
  --gold-hover: #b38510;
  
  --bg-main: hsl(40, 30%, 97%);
  --bg-surface: hsl(0, 0%, 100%);
  --bg-surface-alt: hsl(40, 25%, 94%);

  --text-main: hsl(150, 15%, 15%);
  --text-muted: hsl(150, 8%, 42%);
  --text-light: hsl(0, 0%, 100%);
  
  --border-light: hsl(142, 15%, 88%);
  --border-focus: var(--primary);
  
  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 10px 30px rgba(112, 16, 25, 0.25);
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent-hover);
}

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

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background-color: var(--accent-soft);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 2.5rem;
}

/* Header & Glassmorphism Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: block;
  width: 160px;
  height: 52px;
}

.brand-logo-img {
  max-height: 180px;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  background: #fff;
  padding: 4px;
  position: absolute;
  top: 0;
  z-index: 1010;
  transition: max-height 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
}

.header.scrolled .brand-logo-img {
  max-height: 60px;
  padding: 2px;
  border-radius: 6px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary-dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6.5rem 0 5rem;
  background: linear-gradient(135deg, rgba(112, 16, 25, 0.88), rgba(60, 8, 13, 0.92)), url('./images/hero.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hero-content {
  max-width: 780px;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Announcement & Tips Section */
.announcement-section {
  padding: 5rem 0;
  background: var(--bg-surface-alt);
}

.announcement-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.announcement-text {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.announcement-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.tips-box {
  background: var(--accent-soft);
  border-left: 5px solid var(--accent);
  padding: 2rem;
  border-radius: var(--radius-sm);
}

.tips-box h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1rem;
  color: var(--text-main);
}

.tips-list i {
  color: var(--primary);
  margin-top: 4px;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-feature-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-feature-img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-feature-card:hover .about-feature-img {
  transform: scale(1.04);
}

.about-card-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(112, 16, 25, 0.85);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-card-badge i {
  color: var(--accent);
  font-size: 1.4rem;
}

.mission-box {
  background: var(--primary);
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-primary);
}

.mission-box h4 {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.mission-box p {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.4;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Past Tours Accordion Section */
.past-tours-section {
  padding: 6rem 0;
  background: var(--bg-surface-alt);
}

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

.accordion-item {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--bg-surface);
  user-select: none;
}

.accordion-header:hover {
  background: rgba(112, 16, 25, 0.03);
}

.accordion-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.year-badge {
  background: var(--primary);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.3s ease;
  padding: 0 1.8rem;
  color: var(--text-muted);
}

.accordion-item.active .accordion-body {
  padding: 1.2rem 1.8rem 1.8rem;
  max-height: 1400px;
}

.tour-farm-list {
  list-style: none;
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tour-farm-list li {
  font-size: 1rem;
  color: var(--text-main);
}

.tour-farm-list a {
  font-weight: 600;
  color: var(--primary);
}

.attractions-box {
  margin-top: 1rem;
  background: var(--bg-surface-alt);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
  font-size: 0.95rem;
}

.attractions-box strong {
  color: var(--primary-dark);
  display: block;
  margin-bottom: 0.4rem;
}

/* Video Showcase Section */
.video-section {
  padding: 5rem 0;
  background: var(--bg-surface-alt);
  border-top: 1px solid var(--border-light);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.video-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.video-thumb-wrap:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 0, 0, 0.9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-btn-overlay i {
  margin-left: 4px;
}

.video-thumb-wrap:hover .play-btn-overlay {
  transform: translate(-50%, -50%) scale(1.12);
  background: #ff0000;
}

.video-card-body {
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.video-card-body h4 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.video-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.video-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff0000;
  color: #fff !important;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.video-link-btn:hover {
  background: #cc0000;
}

/* Filterable Gallery Section */
.gallery-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--bg-surface-alt);
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, opacity 0.4s ease;
  background: var(--bg-surface-alt);
}

.gallery-card.hide {
  display: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60, 8, 13, 0.85), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent);
}

/* Tiered Sponsors Section */
.sponsors-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.sponsor-tier {
  margin-bottom: 3.5rem;
}

.tier-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.platinum-title { border-color: #e5e4e2; }
.gold-title { border-color: var(--accent); }
.silver-title { border-color: #c0c0c0; }
.bronze-title { border-color: #cd7f32; }

/* Platinum Grid */
.sponsor-grid-platinum {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.8rem;
  align-items: center;
}

.sponsor-card-platinum {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
  text-align: center;
  transition: var(--transition);
}

.sponsor-card-platinum img {
  max-height: 90px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(10%);
  transition: var(--transition);
}

.sponsor-card-platinum:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.sponsor-card-platinum:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Gold Grid */
.sponsor-grid-gold {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.4rem;
  align-items: center;
}

.sponsor-card-gold {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120px;
  text-align: center;
  transition: var(--transition);
}

.sponsor-card-gold img {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.sponsor-card-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

.sponsor-card-gold:hover img {
  transform: scale(1.06);
}

.sponsor-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-top: 0.4rem;
}

/* Silver & Bronze Pills */
.sponsor-pills-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.sponsor-pill {
  background: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sponsor-pill a {
  color: inherit;
}

.sponsor-pill:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Visitor Speech Bubble Quotes Wall */
.reviews-section {
  padding: 6rem 0;
  background: var(--primary-dark);
  color: #fff;
}

.reviews-section .section-tag {
  background-color: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
}

.reviews-section .section-title {
  color: #fff;
}

.reviews-section .section-desc {
  color: rgba(255, 255, 255, 0.92);
}

.quotes-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
  margin-top: 2.5rem;
}

.speech-bubble {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.speech-bubble:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent);
}

.speech-bubble.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(115, 115, 115, 0.18), rgba(255, 255, 255, 0.12));
  border: 2px solid var(--accent);
  padding: 1.8rem 2.2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.speech-bubble.featured p {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

.quote-icon {
  color: var(--accent);
  font-size: 1.1rem;
  margin-right: 0.5rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .speech-bubble.featured {
    grid-column: span 1;
    padding: 1.4rem 1.6rem;
  }
  .speech-bubble.featured p {
    font-size: 1rem;
  }
}

/* Contact & Passport Form */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}

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

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

/* Footer */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.92);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.footer-brand p {
  font-size: 0.95rem;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer-links h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive Breakdown */
@media (max-width: 992px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.4s ease-in-out;
  }
  .nav-menu.active {
    clip-path: circle(140% at 100% 0);
  }
  .mobile-toggle {
    display: block;
  }
  .brand-logo-img {
    max-height: 110px;
  }
  .hero {
    padding-top: 8.5rem;
  }
}

