/* PrimeFort Landing Page Styles */

/* --------------------- CSS Variables --------------------- */
:root {
  /* Modern, sophisticated color palette */
  --color-primary: #0a3442;      /* Deep teal */
  --color-primary-light: #0d4b5e; /* Lighter teal */
  --color-secondary: #1a365d;    /* Deep blue */
  --color-accent: #2c7a7b;       /* Muted teal accent */
  --color-light: #ffffff;
  --color-dark: #1a202c;         /* Dark gray/blue */
  --color-muted: #718096;        /* Muted gray */
  --color-border: #e2e8f0;       /* Light border color */
  --color-bg: #ffffff;          /* Pure white background */
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  --transition: all 0.2s ease-in-out;
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

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

/* --------------------- Animations --------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }

body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: var(--font-weight-normal);
  color: var(--color-dark);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

/* Container helpers */
.container {
  width: 90%;
  max-width: 1280px;
  margin-inline: auto;
}

/* --------------------- NAVBAR --------------------- */
/* Add padding to the top of the body to account for fixed navbar */
body {
  padding-top: 80px; /* Adjust this value based on your navbar height */
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 4.5%;
  background-color: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(15, 30, 60, 0.05);
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-primary { color: var(--color-dark); }
.logo-accent { color: var(--color-dark); }
.logo-tagline {
  font-size: 0.55rem;
  letter-spacing: 0.05rem;
  color: var(--color-muted);
  margin-top: 0.2rem;
}

.navigation .nav-links {
  display: flex;
  gap: 2.5rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation a {
  color: var(--color-dark);
  opacity: 0.75;
}
.navigation a:hover,
.navigation a.active {
  opacity: 1;
}

/* Button styles */
.btn {
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.6rem 1.6rem;
  font-size: 0.875rem;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #051727;
  color: var(--color-light);
}
.btn-primary:hover {
  background-color: #28B7AB;
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

/* --------------------- HERO --------------------- */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  min-height: 80vh;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #0a2c39;
}

.subtitle {
  color: var(--color-muted);
  font-size: 1.125rem;
  max-width: 34rem;
  margin-inline: auto;
  margin: 0.5rem auto 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.status-badge {
  background-color: var(--color-accent);
  color: var(--color-light);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  transform: translateY(-50%);
}

/* --------------------- SERVICES --------------------- */
.services {
  text-align: center;
  padding: 8rem 1rem;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 52, 66, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.services h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #051727;
  margin-bottom: 3rem;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 0 1rem;
}

.service-card {
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0.9;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card .service-label {
  font-size: 0.7rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
  padding: 0;
  opacity: 0.9;
}

.service-card .price {
  font-size: 2.25rem;
  font-weight: 800;
  color: #051727;
  margin: 0.5rem 0 0;
}

.service-card .assets {
  color: #6c757d;
  font-size: 0.95rem;
  margin: -0.5rem 0 1rem;
}

.service-card .chat-heading {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  margin: 0.5rem 0 1rem;
  line-height: 1.3;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}

.features li {
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.7;
  padding-left: 0.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  transition: var(--transition);
}

.features li::before {
  content: "✓";
  position: relative;
  left: 0;
  top: 0.2rem;
  color: var(--color-accent);
  font-weight: bold;
  min-width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(44, 122, 123, 0.1);
  border-radius: 50%;
  font-size: 0.7rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.btn-accent {
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
  background-color: var(--color-primary);
  color: var(--color-light);
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: var(--font-weight-medium);
  font-size: 0.9rem;
  transition: var(--transition);
  text-align: center;
  width: auto;
  min-width: 140px;
  margin: 0.5rem auto 0;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-light);
}

.btn-accent:hover::before {
  opacity: 1;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card {
    padding: 3rem 2.5rem;
  }
}

/* Removed duplicate .btn-accent styles */

/* --------------------- CLIENTS & FEATURED IN --------------------- */

/* --------------------- Responsive --------------------- */
/* --------------------- CLIENTS --------------------- */
.clients {
  text-align: center;
  padding: 8rem 1rem 6rem;
  margin-top: 4rem;
}

.clients h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 3rem;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 7rem;  /* Increased gap between logos */
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  max-width: 1300px;  /* Slightly wider container */
  margin: 0 auto;
}

.clients-logos img {
  height: 70px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: all 0.3s ease;
  opacity: 0.9;
}

/* Adjust specific logos for better visual balance */
.clients-logos img[alt="WeWork logo"] {
  height: 105px;
  margin-top: 0;
}

.clients-logos img[alt="AWS logo"] {
  height: 45px;
  margin-top: 0;
}

.clients-logos img[alt="Google logo"],
.clients-logos img[alt="Apple logo"] {
  height: 55px;
  margin-top: 0;
}

.clients-logos img[alt="LinkedIn logo"] {
  height: 85px;
  margin-top: 0;
}

/* Logo adjustments */
.clients-logos img[alt*="Google"],
.clients-logos img[alt*="Apple"] {
  height: 55px;
  margin-top: 0;
}

/* Individual logo sizing */
.clients-logos img[alt*="The Hindu"] {
  height: 65px;
  max-width: 160px;
}

.clients-logos img[alt*="CNBC"] {
  height: 62px;
  max-width: 170px;
}

.clients-logos img[alt*="Economic Times"] {
  height: 55px;
  max-width: 160px;
}

.clients-logos img[alt*="TechCrunch"] {
  height: 58px;
  max-width: 190px;
}

.clients-logos img[alt*="Times of India"] {
  height: 60px;
  max-width: 160px;
}

/* Base styles for all client logos */
.clients-logos img {
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scale(1);
  will-change: transform, opacity;
  object-fit: contain;
  object-position: center;
}

/* Hover effect for all logos */
.clients-logos img:hover {
  opacity: 1;
  transform: scale(1.08);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Individual logo sizing - moved after base styles to ensure proper cascade */
.clients-logos img[alt*="The Hindu"] {
  height: 65px;
  max-width: 160px;
}

.clients-logos img[alt*="CNBC"] {
  height: 62px;
  max-width: 170px;
}

.clients-logos img[alt*="Economic Times"] {
  height: 55px;
  max-width: 160px;
}

.clients-logos img[alt*="TechCrunch"] {
  height: 58px;
  max-width: 190px;
}

.clients-logos img[alt*="Times of India"] {
  height: 60px;
  max-width: 160px;
}

/* ===================== MEDIA QUERIES ===================== */

/* Tablet and below */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
    max-width: 90%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .clients-logos {
    gap: 2.5rem;
    padding: 0 1rem;
  }
  
  .clients-logos img {
    height: 50px;
    max-width: 120px;
  }
  
  .about-section .container {
    padding: 0 1.5rem;
  }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none; /* Hidden by default */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  position: relative;
  transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  transition: all 0.3s ease;
}

.menu-icon::before {
  transform: translateY(-8px);
}

.menu-icon::after {
  transform: translateY(8px);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon::after {
  transform: rotate(-45deg);
}

/* Mobile */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    padding: 5rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
  }

  .navigation.active {
    right: 0;
  }

  .navigation .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .navigation .nav-links li {
    width: 100%;
  }

  .navigation .nav-links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }

  .btn-outline {
    display: none;
  }

  .navbar {
    padding: 0.8rem 1.25rem;
  }
  
  .logo-img {
    height: 36px;
  }
  
  .hero {
    padding: 2rem 1rem;
    min-height: auto;
    padding-top: 1rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  
  .subtitle {
    font-size: 1rem;
    margin: 0.5rem auto 2rem;
  }
  
  .services, .clients, .about-section, .testimonials {
    padding: 4rem 1rem;
  }
  
  .services h2, .clients h2, .about-section h2, .testimonials h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .service-card {
    padding: 1.75rem 1.25rem;
  }
  
  .service-card .chat-heading {
    font-size: 1.5rem;
  }
  
  .clients-logos {
    gap: 1.5rem 2.5rem;
  }
  
  .clients-logos img {
    height: 40px;
    max-width: 100px;
  }
  
  .about-content {
    text-align: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .faq-item {
    margin-bottom: 1rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 1rem 0;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo, .footer-links, .footer-social {
    margin-bottom: 2rem;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .services-grid, .testimonial-grid {
    gap: 1.5rem;
  }
  
  .clients-logos {
    gap: 1rem 1.5rem;
  }
  
  .clients-logos img {
    height: 35px;
    max-width: 80px;
  }
  
  .about-section, .testimonials {
    padding: 3rem 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 6rem 1rem;
  background-color: var(--color-light);
  text-align: center;
}

.testimonials h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: left;
  border: 1px solid var(--color-border);
}

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

.testimonial-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
}

/* Media query for responsive adjustments */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .testimonials {
    padding: 4rem 1rem;
  }
  
  .testimonials h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
}

/* ===================== FOOTER ===================== */
.site-footer {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: 4rem 2rem 2rem;
  font-family: var(--font-primary);
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  color: var(--color-muted);
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-social h3,
.footer-links h3 {
  color: var(--color-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-light);
  transition: var(--transition);
}

/* Custom X logo styles */
.x-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.x-icon:hover {
  background: #000000;
  color: #ffffff;
}

.social-icons a:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.8rem;
}

.nav-links li a {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* External link indicator */
.external-icon {
  font-size: 0.8em;
  opacity: 0.7;
  transition: var(--transition);
  line-height: 1;
  display: inline-flex;
}

.external-link:hover .external-icon {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-links a:hover {
  color: var(--color-light);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-logo {
    margin-bottom: 2rem;
  }
}

/* ===================== ABOUT SECTION ===================== */
.about-section {
  padding: 6rem 0;
  background-color: #fff;
}

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.about-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: translateY(-5px);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

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

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

.stat-label {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

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

.section-header p {
  color: var(--color-muted);
  font-size: 1.1rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Animation for FAQ items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    order: -1;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-section, .faq-section {
    padding: 4rem 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1.25rem;
  }
}
