/* ===================================
   Loew-Beer Scientific Design System
   Color Palette from Logo
   =================================== */

:root {
  /* Logo Colors - Extracted from the gradient */
  --navy: #003D5C;
  --teal: #006B7D;
  --green: #4A9B6E;
  --lime: #A3C644;
  --yellow: #E6D71E;
  
  /* Neutral Colors */
  --beige: #F5F1E8;
  --beige-dark: #E8E2D5;
  --charcoal: #2C3539;
  --text-dark: #1A1D1F;
  --text-light: #5F6B73;
  
  /* Semantic Colors */
  --primary: var(--teal);
  --accent: var(--lime);
  --highlight: var(--yellow);
  
  /* Gradients - Subtle */
  --gradient-main: linear-gradient(135deg, #006B7D 0%, #4A9B6E 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(0, 61, 92, 0.03) 0%, rgba(163, 198, 68, 0.03) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 61, 92, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 61, 92, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 61, 92, 0.16);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   Reset & Base Styles
   =================================== */

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

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

body {
  font-family: var(--font-primary);
  background: var(--beige);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--beige-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy);
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 750;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

/* ===================================
   Layout
   =================================== */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 61, 92, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(245, 241, 232, 0.98);
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 750;
  color: var(--navy);
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-text {
  display: none;
}

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

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-btn {
  background: var(--teal);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.cta-btn:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 968px) {
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--beige);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    gap: 1.5rem;
  }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.hero.scrolled .hero-bg {
  opacity: 0.3;
}

/* Watermark Logo - Full Page */
.watermark-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../public/logo-lb.png');
  background-size: 64vw;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

/* Grid Pattern */
.grid-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 61, 92, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 61, 92, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

/* Gradient Glows */
.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 12s ease-in-out infinite;
}

.glow-1 {
  top: 10%;
  left: 10%;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
}

.glow-2 {
  bottom: 10%;
  right: 10%;
  background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 50px) scale(0.9);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 107, 125, 0.08);
  border: 1px solid rgba(0, 107, 125, 0.2);
  border-radius: 50px;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #006B7D 0%, #A3C644 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 700px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Buttons */
.btn {
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background: var(--navy);
  color: white;
}

.btn-large {
  padding: 1.25rem 2.75rem;
  font-size: 1.05rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(0, 61, 92, 0.08);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  font-weight: 500;
}

/* ===================================
   Sections
   =================================== */

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

.section-alt {
  background: var(--gradient-subtle);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 1.6;
}

/* ===================================
   Platform Cards
   =================================== */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.platform-card {
  background: white;
  border: 2px solid rgba(0, 61, 92, 0.08);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

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

.platform-icon {
  width: 72px;
  height: 72px;
  background: var(--teal);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: white;
}

.platform-icon svg {
  width: 36px;
  height: 36px;
}

.platform-card h3 {
  margin-bottom: 1rem;
  color: var(--navy);
}

.platform-desc {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ===================================
   Research Section
   =================================== */

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

.research-item {
  background: white;
  border: 1px solid rgba(0, 61, 92, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.research-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--teal);
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.research-icon {
  color: var(--teal);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.research-item p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================================
   Expertise Section
   =================================== */

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

.expertise-card {
  background: white;
  border: 1px solid rgba(0, 61, 92, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.expertise-card:hover {
  background: var(--gradient-subtle);
  border-color: var(--teal);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.expertise-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-subtle);
  border: 2px solid rgba(0, 107, 125, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.expertise-icon svg {
  width: 32px;
  height: 32px;
}

.expertise-card h4 {
  margin-bottom: 1rem;
  color: var(--navy);
}

.expertise-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================================
   Leadership Section
   =================================== */

.leadership-content {
  max-width: 1200px;
  margin: 0 auto;
}

.leadership-intro {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: white;
  border-radius: 20px;
}

.leadership-intro h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.lead-text {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

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

.credential-card {
  background: white;
  border: 1px solid rgba(0, 61, 92, 0.1);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
}

.credential-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.credential-icon {
  width: 56px;
  height: 56px;
  background: var(--teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.credential-icon svg {
  width: 28px;
  height: 28px;
}

.credential-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.credential-content p {
  color: var(--text-light);
  font-size: 0.925rem;
  margin: 0;
  line-height: 1.6;
}

/* ===================================
   Mission Section
   =================================== */

.section-mission {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
}

.mission-content h2 {
  color: white;
  margin-bottom: 2rem;
}

.mission-statement {
  font-size: 1.375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* ===================================
   Partners Section
   =================================== */

.partners-section {
  padding: var(--spacing-xl) 0;
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  width: 100%;
  max-width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--beige);
  border: 2px solid rgba(0, 61, 92, 0.08);
  border-radius: 12px;
  transition: var(--transition);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

.partner-logo:hover {
  border-color: var(--teal);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: white;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--gradient-subtle);
  border-radius: 32px;
  border: 2px solid rgba(0, 61, 92, 0.1);
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   Footer
   =================================== */

.footer {
  background: var(--beige-dark);
  color: var(--text-dark);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  margin-top: var(--spacing-xl);
  border-top: 2px solid rgba(0, 61, 92, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 160px;
  width: auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-column p {
  color: var(--text-light);
  font-size: 0.925rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-column a {
  display: block;
  color: var(--text-light);
  font-size: 0.925rem;
  margin-bottom: 0.5rem;
  transition: var(--transition);
  line-height: 1.6;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 61, 92, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0;
}

/* ===================================
   Contact Page Styles
   =================================== */

/* Contact Hero */
.contact-hero {
  padding: 150px 0 80px;
  background: var(--gradient-subtle);
  text-align: center;
  position: relative;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border: 2px solid rgba(0, 61, 92, 0.08);
  border-radius: 20px;
  padding: 3rem;
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-header h2 {
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.form-header p {
  color: var(--text-light);
  margin: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 0.925rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(0, 61, 92, 0.15);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--beige);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 107, 125, 0.1);
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 400;
  color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.btn-block {
  width: 100%;
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  margin: 1rem 0 0 0;
  grid-column: 1 / -1;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  border: 2px solid rgba(0, 61, 92, 0.08);
  border-radius: 16px;
  padding: 2rem;
}

.contact-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-subtle);
  border: 2px solid rgba(0, 107, 125, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  margin: 0;
}

.contact-value a,
a.contact-value {
  color: var(--teal);
  transition: var(--transition);
}

.contact-value a:hover,
a.contact-value:hover {
  color: var(--navy);
}

/* Expectations List */
.expectations-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.expectations-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.exp-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.expectations-list strong {
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.expectations-list p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0;
}

/* Working Hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  background: var(--beige);
  border-radius: 8px;
  font-size: 0.9rem;
}

.hours-item span:first-child {
  color: var(--text-dark);
  font-weight: 500;
}

.hours-item span:last-child {
  color: var(--teal);
  font-weight: 600;
}

/* Emergency Card */
.contact-card-emergency {
  background: linear-gradient(135deg, rgba(0, 107, 125, 0.05) 0%, rgba(74, 155, 110, 0.05) 100%);
  border-color: var(--teal);
}

.contact-card-emergency h3 {
  color: var(--teal);
}

.contact-card-emergency p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  border: 1px solid rgba(0, 61, 92, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.faq-item h4 {
  color: var(--navy);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Contact Page */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 120px 0 60px;
  }
}

@media (max-width: 640px) {
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .contact-card {
    padding: 1.5rem;
  }
}

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

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
  opacity: 0;
}

.delay-2 {
  animation-delay: 0.4s;
  opacity: 0;
}

.delay-3 {
  animation-delay: 0.6s;
  opacity: 0;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: auto 1fr 1fr;
  }
  
  .footer-content .footer-column:last-child {
    grid-column: 2 / -1;
    margin-top: 1rem;
  }
}

@media (max-width: 968px) {
  .platform-grid,
  .expertise-grid,
  .credentials-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .research-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    justify-content: center;
  }
  
  .footer-column {
    align-items: center;
  }
  
  .footer-column a:hover {
    transform: translateX(0);
  }
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
}