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

:root {
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #1e3a8a;
  --neutral-900: #1e3a8a;
  --emerald-50: #ecfdf5;
  --emerald-700: #047857;
  --navy-primary: #1e3a8a;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background: white;
  color: var(--neutral-900);
  line-height: 1.6;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-200);
  transition: all 0.3s ease;
}

nav {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--neutral-900);
  transition: transform 0.2s;
}

.mobile-menu-btn:hover {
  transform: scale(1.05);
}

.mobile-menu-btn svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* Mobile Menu */
.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 100;
  padding: 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--neutral-100);
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--neutral-500);
  transition: color 0.2s;
}

.mobile-menu-close:hover {
  color: var(--neutral-900);
}

.mobile-menu-close svg {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  stroke-width: 1.5;
}

.mobile-nav-links {
  list-style: none;
  margin-bottom: auto;
}

.mobile-nav-links li {
  margin-bottom: 0;
  border-bottom: 1px solid var(--neutral-50);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.mobile-menu.active .mobile-nav-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-nav-links a {
  display: block;
  padding: 1.5rem 0;
  text-decoration: none;
  color: var(--neutral-900);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  transition:
    color 0.2s,
    padding 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--navy-primary);
  padding-left: 0.5rem;
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  padding: 1.25rem;
  font-size: 1rem;
  margin-top: 2rem;
  background: var(--navy-primary);
  color: white;
  border-radius: 0.5rem;
}

.mobile-menu .btn:hover {
  background: var(--neutral-800);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--neutral-600);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
  text-transform: uppercase;
  font-family: "Inter", sans-serif; /* Fallback for premium font */
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--neutral-900);
  color: white;
  height: 2.75rem;
}

.btn-primary:hover {
  background: var(--neutral-800);
}

.btn-secondary {
  border: 1px solid var(--neutral-300);
  background: white;
  color: var(--neutral-900);
}

.btn-secondary:hover {
  background: var(--neutral-50);
}

/* Hero Section */
/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    var(--neutral-50) 0%,
    white 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 10;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: none;
  left: auto;
  top: auto;
  z-index: 1;
}

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

.hero-image-container:hover .hero-img {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.hero-stats-grid {
  position: absolute;
  bottom: -3rem;
  left: -2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 450px;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 9999px;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.avatar-group {
  display: flex;
  margin-left: 0;
}

.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 2px solid white;
  object-fit: cover;
  background: white;
  display: block;
}

.logo-avatar {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.logo-avatar svg {
  width: 70%;
  height: 70%;
}

.logo-avatar:nth-child(1) {
  background: #004c8f;
}
.logo-avatar:nth-child(2) {
  background: #3955a1;
}
.logo-avatar:nth-child(3) {
  background: #d41f2d;
}

.avatar:nth-child(2) {
  margin-left: -0.75rem;
}

.avatar:nth-child(3) {
  margin-left: -0.75rem;
}

.badge-text {
  font-size: 0.875rem;
  color: var(--neutral-600);
  font-weight: 500;
}

h1 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  color: var(--neutral-900);
}

h1 span {
  font-weight: 600;
  color: var(--navy-primary);
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--neutral-600);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  height: auto;
  border-radius: 0.5rem;
  letter-spacing: 0.02em;
}

/* Stats Cards Design */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 500px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--neutral-100);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.08);
  border-color: var(--neutral-200);
}

.stat-card.highlight {
  background: var(--navy-primary);
  color: white;
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem;
}

.stat-card.highlight .stat-number,
.stat-card.highlight .stat-label {
  color: white;
}

.stat-card.highlight .stat-number {
  margin-bottom: 0;
  font-size: 3.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-500);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Trusted By Section - Infinite Carousel */
.trusted-section {
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  background: white;
  overflow: hidden;
}

.trusted-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 4rem 0;
}

.section-label {
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--neutral-500);
  margin-bottom: 3rem;
  font-weight: 500;
  text-transform: uppercase;
}

.logo-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 5rem;
  animation: scroll 30s linear infinite;
}

.company-logo {
  flex-shrink: 0;
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.company-logo:hover {
  filter: grayscale(0%) opacity(1);
}

.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 2.5rem)); /* Adjust based on gap */
  }
}

/* Pause animation on hover */
.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

/* Solutions Section */
.solutions-section {
  background: var(--neutral-50);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.solutions-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
}

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

.section-subtitle {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy-primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.section-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--neutral-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-title span {
  font-weight: 600;
  color: var(--navy-primary);
}

.section-description {
  font-size: 1.25rem;
  color: var(--neutral-600);
  line-height: 1.6;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.solution-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.02),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08); /* Premium shadow */
  border-color: rgba(0, 76, 143, 0.1);
}

.solution-icon-wrapper {
  width: 4.5rem;
  height: 4.5rem;
  background: var(--neutral-50);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  color: var(--navy-primary);
}

.solution-card:hover .solution-icon-wrapper {
  background: var(--navy-primary);
  color: white;
  transform: scale(1.05) rotate(-3deg);
}

.solution-icon-wrapper svg {
  width: 2.25rem;
  height: 2.25rem;
  stroke-width: 1.5;
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.solution-card p {
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--neutral-100);
  padding-top: 1.5rem;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--neutral-700);
  font-size: 0.95rem;
  font-weight: 400;
}

.feature-check {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--navy-primary);
  flex-shrink: 0;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--navy-primary);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.2s ease;
}

.learn-more-link:hover {
  gap: 0.75rem;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 8rem 0;
  background: white;
  position: relative;
}

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

.why-card {
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: white;
  border: 1px solid var(--neutral-200);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08); /* Premium shadow */
  border-color: rgba(0, 76, 143, 0.2);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-primary), var(--navy-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--neutral-50);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--navy-primary);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: var(--navy-primary);
  color: white;
  transform: rotate(-5deg);
}

.why-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 1.5;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.why-card p {
  color: var(--neutral-600);
  line-height: 1.7;
  font-weight: 300;
  font-size: 1rem;
}

/* Stats Row within Why Section */
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid var(--neutral-100);
}

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

.stat-value {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .why-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Dark Section */
.dark-section {
  background: var(--neutral-900);
  color: white;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.dark-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

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

.dark-section h2 {
  color: white;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.dark-section .section-subtitle {
  background: rgba(255, 255, 255, 0.1);
  color: var(--neutral-200);
  border-color: rgba(255, 255, 255, 0.2);
}

.dark-section p {
  color: var(--neutral-300);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
}

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

.feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--neutral-200);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
}

.feature-item h3 {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--neutral-400);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Footer */
footer {
  background: white;
  border-top: 1px solid var(--neutral-200);
  font-family: var(--font-body);
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 6rem 3rem 3rem;
}

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

.footer-brand .logo {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: 1.5rem;
  color: var(--neutral-900);
}

.footer-brand .logo span {
  font-weight: 600;
  color: var(--navy-primary);
}

.footer-brand p {
  max-width: 350px;
  color: var(--neutral-600);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--neutral-600);
  font-weight: 500;
}

.footer-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--navy-primary);
}

.footer-section h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--neutral-600);
  font-weight: 300;
  transition: color 0.2s;
  font-size: 0.95rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--neutral-500);
  font-weight: 300;
}

.copyright {
  opacity: 0.8;
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: var(--neutral-500);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .dark-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

/* Newspaper Search Section */
.newspaper-search-section {
  position: relative;
  background: var(--navy-primary);
  padding: 8rem 0;
  overflow: hidden;
  color: white;
}

.newspaper-search-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1504711434969-e33886168f5c?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.search-section-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.search-title {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.search-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4rem;
  font-weight: 300;
}

.search-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1.5rem;
  align-items: end;
}

.form-group {
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-select {
  width: 100%;
  height: 3.5rem;
  padding: 0 1.25rem;
  border-radius: 0.5rem;
  border: none;
  background: white;
  color: var(--neutral-900);
  font-size: 1rem;
  font-family: var(--font-body);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1rem;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.form-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-search {
  height: 3.5rem;
  padding: 0 2rem;
  background: #dc2626; /* Red color from image */
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-search:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.popular-searches {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.popular-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-right: 0.5rem;
}

.search-tag {
  background: white;
  color: var(--neutral-900);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.search-tag:hover {
  background: var(--neutral-100);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .search-form {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .btn-search {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .search-title {
    font-size: 2rem;
  }
  .search-form {
    grid-template-columns: 1fr;
  }
  .btn-search {
    grid-column: span 1;
  }
  .search-container {
    padding: 1.5rem;
  }
  .popular-searches {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Testimonial Section */
.testimonial-section {
  padding: 8rem 0;
  background: #f8fafc; /* Light gray background */
  position: relative;
}

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

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 76, 143, 0.1);
}

.quote-icon-wrapper {
  width: 3rem;
  height: 3rem;
  background: #fef2f2; /* Light red bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: #dc2626; /* Red icon */
}

.quote-icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--neutral-600);
  margin-bottom: 2rem;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: var(--neutral-100);
  margin-bottom: 1.5rem;
}

.author-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 700;
  color: var(--neutral-900);
  font-size: 1.125rem;
  font-family: var(--font-display);
}

.author-role {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-bottom: 0.5rem;
}

.author-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #dc2626; /* Red color */
  font-weight: 500;
}

.author-location svg {
  width: 1rem;
  height: 1rem;
}
/* Blog Section */
.blog-section {
  padding: 8rem 0;
  background: white;
  position: relative;
}

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

.blog-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Premium shadow */
  border-color: rgba(0, 76, 143, 0.2);
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.blog-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-primary);
  background: rgba(0, 76, 143, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-date {
  font-size: 0.875rem;
  color: var(--neutral-500);
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
  line-height: 1.4;
  font-family: var(--font-display);
}

.blog-snippet {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--navy-primary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}

.read-more-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.read-more-link:hover {
  gap: 0.75rem;
}

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

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.footer-links a {
  color: var(--neutral-600);
  font-size: 0.875rem;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.875rem;
  color: var(--neutral-500);
  font-weight: 300;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--neutral-500);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--neutral-900);
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1.5rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-content {
    padding: 4rem 1.5rem;
  }

  .solutions-section {
    padding: 4rem 1.5rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dark-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Contact / CTA Section */
.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-methods {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-method-item h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-method-item a {
  font-size: 1.25rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-display);
}

.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-heading {
  font-size: 1.5rem;
  color: var(--neutral-900);
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

.dark-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--neutral-200);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--neutral-50);
  color: var(--neutral-900);
  transition: all 0.2s ease;
}

.dark-input:focus {
  outline: none;
  border-color: var(--navy-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 76, 143, 0.1);
}

.contact-form textarea.dark-input {
  resize: vertical;
}

.full-width {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .dark-grid {
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 8rem 0;
  background: white;
}

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

.faq-item {
  border-bottom: 1px solid var(--neutral-200);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font: inherit;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--neutral-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  text-align: left;
}

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

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--neutral-400);
  transition:
    transform 0.3s ease,
    color 0.2s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--navy-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--neutral-600);
  line-height: 1.6;
}

.faq-answer-content {
  padding-bottom: 2rem;
}

/* Enhanced Footer Social Icons & Polish */
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem; /* Added margin bottom to separate from badges */
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 0.75rem; /* Slightly softer square */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-600);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.social-icon:hover {
  border-color: var(--navy-primary);
  color: white;
  background: var(--navy-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(30, 58, 138, 0.15);
}

.social-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.social-icon:hover svg {
  transform: scale(1.1);
}

/* Polish Footer Links with underline effect */
.footer-links a {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--navy-primary);
  transition: width 0.3s ease;
}

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

/* Ensure Logo Image fits well in footer */
.footer-brand .logo img {
  height: 40px; /* Adjusted to fit footer scale */
  width: auto;
  object-fit: contain;
}

/* Lost & Found Page Specifics */
.hero-lost-found {
  background: radial-gradient(
    circle at 10% 20%,
    var(--neutral-50) 0%,
    white 90%
  );
}

.step-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--neutral-200);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 76, 143, 0.2);
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: var(--navy-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 20px -5px rgba(30, 58, 138, 0.3);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--neutral-600);
  line-height: 1.6;
  font-size: 1rem;
}

/* Document Grid Styles */
.document-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.document-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--neutral-200);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.document-card:hover {
  border-color: var(--navy-primary);
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.06);
}

.document-icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--navy-primary);
  padding: 0.875rem;
  background: var(--neutral-50);
  border-radius: 0.75rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.document-icon svg {
  width: 100%;
  height: 100%;
}

.document-card:hover .document-icon {
  background: var(--navy-primary);
  color: white;
  transform: rotate(-5deg);
}

.document-card strong {
  display: block;
  font-size: 1.125rem;
  color: var(--neutral-900);
  font-weight: 600;
}

/* Sample Ads Section */
.sample-ads-section {
  padding: 8rem 0;
  background: white;
}

.sample-ads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.sample-ad-card {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: relative;
}

.sample-ad-card::before {
  content: "SAMPLE FORMAT";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--neutral-400);
  border: 1px solid var(--neutral-200);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.sample-ad-content {
  font-family: "Times New Roman", serif;
  background: #fffdf5; /* Newspaper-like tint */
  padding: 1.5rem;
  border: 1px dashed var(--neutral-300);
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.sample-ad-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy-primary);
}

/* Legal Benefits Section */
.legal-benefits-section {
  padding: 8rem 0;
  background: var(--neutral-50);
}

.benefit-box {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  height: 100%;
  border-left: 4px solid var(--navy-primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.benefit-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.benefit-box p {
  color: var(--neutral-600);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .sample-ads-grid {
    grid-template-columns: 1fr;
  }
}

/* Scroll Animations */
html {
  scroll-behavior: smooth;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
    transform 0.8s cubic-bezier(0.5, 0, 0, 1);
  will-change: opacity, transform;
}

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

.animate-fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.animate-fade-in.is-visible {
  opacity: 1;
}

/* Footer Contact Styles */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--neutral-600);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.5;
}

.contact-item span {
  max-width: 250px;
}

.contact-item:not(.location):hover {
  color: var(--navy-primary);
  transform: translateX(5px);
}

.contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--navy-primary);
  transition: transform 0.3s ease;
  margin-top: 0.15rem; /* Optical alignment */
}

a.contact-item:hover svg {
  transform: scale(1.1);
}

.contact-item.location {
  cursor: default;
}
