/* ============================================
   HEADER STYLES - MATCHING REACT EXACTLY
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Top Bar with Gradient */
.header-top-bar {
  background: linear-gradient(90deg, #0d9488 0%, #06b6d4 50%, #0d9488 100%);
  padding: 0.75rem 0;
}

/* Logo Container */
.header-logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border-radius: 0.5rem;
  padding: 0.375rem 0.125rem;
}

.header-logo-img {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .header-logo-img {
    height: 3.5rem;
  }
}

/* Social Icons */
.header-social-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.header-social-icon:hover {
  opacity: 0.8;
}

.header-social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Search Input */
.header-search-input {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border-radius: 9999px;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.9);
  width: 16rem;
  outline: none;
  transition: all 0.3s ease;
}

.header-search-input:focus {
  background: white;
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.5);
}

/* Navigation */
.main-nav {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 5px 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
}

.nav-link-item {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #374151;
}

.nav-link-item:hover {
  background: #f0fdfa;
  color: #0d9488;
}

.nav-link-item.active {
  background: linear-gradient(90deg, #0d9488 0%, #06b6d4 100%);
  color: white;
}

.nav-link-item.highlight {
  background: linear-gradient(90deg, #fb7185 0%, #f97316 100%);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-link-item.highlight:hover {
  background: linear-gradient(90deg, #f43f5e 0%, #ea580c 100%);
}

/* Dropdown Styles */
.nav-item {
  position: relative;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(20, 184, 166, 0.1);
  min-width: 200px;
  overflow: hidden;
  z-index: 1000;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: #f0fdfa;
  color: #0d9488;
}

.dropdown-item.active {
  background: linear-gradient(90deg, #0d9488 0%, #06b6d4 100%);
  color: white;
}

/* ============================================
   FOOTER STYLES - MATCHING REACT EXACTLY
   ============================================ */

.site-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 3rem 0 0;
}

.footer-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Footer Logo */
.footer-logo-container {
  background: white;
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

/* Footer Text */
.footer-text {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Footer Social Links */
.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer Headings */
.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  /* border-bottom: 2px solid; */
}

.footer-heading.teal {
  color: #00d5be;
  border-color: #00d5be;
}

.footer-heading.rose {
  color: #ff637e;
  border-color: #ff637e;
}

.footer-heading.cyan {
  color: #00d3d9;
  border-color: #00d3d9;
}

/* Footer Links List */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #00d5be;
  transform: translateX(4px);
}

/* Footer Contact Items */
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact-icon.teal {
  color: #00d5be;
}

.footer-contact-icon.rose {
  color: #ff637e;
}

.footer-contact-icon.cyan {
  color: #00d3d9;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-text {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-text {
    text-align: left;
  }
}

/* Powered By Section */
.footer-powered-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-powered-text {
  color: #94a3b8;
  font-size: 0.75rem;
  margin: 0;
}

.footer-company-logo-container {
  background: white;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
}

.footer-company-logo {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
}

/* ============================================
   GRADIENT UTILITIES
   ============================================ */

.bg-gradient-teal {
  background: linear-gradient(135deg, #0d9488 0%, #06b6d4 50%, #14b8a6 100%);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 1023px) {
  .main-nav {
    display: none !important;
  }
}
