/* Custom Styles for Locate My Pin - Works with Tailwind CDN */

/* Breadcrumbs Navigation - Best Practices */
.breadcrumb-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 0;
  margin-bottom: 0;
  font-size: 0.8125rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  line-height: 1.4;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list a {
  color: #2563eb;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 400;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  display: inline-block;
}

.breadcrumb-list a:hover {
  color: #1d4ed8;
  background-color: #eff6ff;
  text-decoration: none;
}

.breadcrumb-separator {
  color: #9ca3af;
  margin: 0 0.375rem;
  font-weight: 400;
  user-select: none;
  font-size: 0.75rem;
}

.breadcrumb-list li:last-child {
  color: #111827;
  font-weight: 500;
}

.breadcrumb-list li:last-child span {
  color: #111827;
  font-weight: 500;
}

/* Mobile Responsive Breadcrumbs */
@media (max-width: 768px) {
  .breadcrumb-nav {
    padding: 0.625rem 0;
    font-size: 0.75rem;
  }

  .breadcrumb-list {
    gap: 0.375rem;
  }

  .breadcrumb-separator {
    margin: 0 0.25rem;
    font-size: 0.6875rem;
  }

  .breadcrumb-list a {
    padding: 0.125rem 0.25rem;
  }
}

/* Header Components - Complete Redesign */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.99);
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 2rem;
}

/* New Logo Design */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.logo-link:hover {
  transform: translateX(2px);
}

.logo-mark-new {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF9933 0%, #FF6B35 50%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
  transition: all 0.3s ease;
}

.logo-mark-new::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF9933, #FF6B35, #1e3a8a);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.logo-link:hover .logo-mark-new {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.logo-link:hover .logo-mark-new::before {
  opacity: 0.3;
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text-new {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title-new {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  line-height: 1.2;
  background: linear-gradient(135deg, #1e3a8a 0%, #FF9933 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline-new {
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 500;
  margin-top: 0.125rem;
}

/* Navigation Menu */
.header-nav {
  display: flex;
  align-items: center;
}

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

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  text-decoration: none;
  color: #475569;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #1e3a8a;
  background-color: #f1f5f9;
}

.nav-link.active {
  color: #1e3a8a;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #FF9933, #1e3a8a);
  border-radius: 2px;
}

.nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-link span {
  white-space: nowrap;
}

/* Mobile Menu Toggle (for future) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #1e3a8a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    padding: 0.875rem 0;
  }

  .logo-title-new {
    font-size: 1.125rem;
  }

  .logo-tagline-new {
    font-size: 0.5625rem;
  }

  .nav-link span {
    display: none;
  }

  .nav-link {
    padding: 0.625rem;
  }

  .nav-icon {
    width: 20px;
    height: 20px;
  }
}

/* Global Fix for Horizontal Overflow */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Redesigned Hero Section */
.hero-section-new {
  position: relative;
  min-height: auto;
  padding: 4rem 2rem 3rem;
  overflow: hidden !important;
  background: #f8fafc;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(45deg, #f8fafc 0px, #f8fafc 20px, #ffffff 20px, #ffffff 40px);
  z-index: 0;
  opacity: 0.5;
  overflow: hidden;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 153, 51, 0.04) 50px, rgba(255, 153, 51, 0.04) 100px),
    repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(30, 58, 138, 0.04) 50px, rgba(30, 58, 138, 0.04) 100px);
  animation: patternFloat 30s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
}

.hero-bg-pattern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 153, 51, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
  animation: patternPulse 20s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes patternFloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(20px, 20px) rotate(3deg);
  }

  50% {
    transform: translate(30px, 30px) rotate(5deg);
  }

  75% {
    transform: translate(20px, 20px) rotate(3deg);
  }
}

@keyframes patternPulse {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.6;
  }
}

/* Hero Container */
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Hero Badge */
.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 153, 51, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: fit-content;
  margin-bottom: 1rem;
}

.badge-icon-wrapper {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF9933 0%, #FF6B35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: white;
}

.badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1e3a8a;
  letter-spacing: 0.3px;
}

.badge-divider {
  color: #cbd5e1;
  font-weight: 400;
  font-size: 0.75rem;
}

.badge-subtext {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
}

/* Main Content - Two Column Layout */
.hero-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-main-content-left {
  text-align: left;
}

.hero-main-content-right {
  text-align: left;
}

.hero-title-new {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 1rem;
  margin-top: 1rem;
  letter-spacing: -0.01em;
}

.title-line-1 {
  display: block;
  margin-bottom: 0.5rem;
}

.title-line-2 {
  display: block;
}

.title-accent {
  background: linear-gradient(135deg, #FF9933 0%, #FF6B35 50%, #1e3a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-desc-new {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

/* Search Box New */
.hero-search-new {
  margin-bottom: 2rem;
}

.search-container-new {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 0.75rem;
  padding: 0.625rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: all 0.2s ease;
  max-width: 100%;
}

.search-container-new:focus-within {
  border-color: #FF9933;
  box-shadow: 0 4px 12px rgba(255, 153, 51, 0.15);
}

.search-icon-wrapper {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 0.5rem;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.search-icon-new {
  width: 1.25rem;
  height: 1.25rem;
  color: #FF9933;
}

.search-input-new {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  color: #1f2937;
  background: transparent;
  font-weight: 500;
}

.search-input-new::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.search-btn-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #FF9933;
  color: white;
  border: none;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(255, 153, 51, 0.3);
}

.search-btn-new:hover {
  background: #FF6B35;
  box-shadow: 0 4px 10px rgba(255, 153, 51, 0.4);
}

.search-btn-new:active {
  transform: translateY(0);
}

.search-arrow-new {
  width: 1.25rem;
  height: 1.25rem;
}

.search-suggestion {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #64748b;
  text-align: left;
}

/* Right Side Info Card Styles */
.hero-right-info-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.75rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.right-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.info-link-icon {
  width: 1rem;
  height: 1rem;
  color: #94a3b8;
  flex-shrink: 0;
}

.quick-info-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.15s ease;
}

.info-table-row:last-child {
  border-bottom: none;
}

.info-table-row:hover {
  background-color: rgba(248, 250, 252, 0.5);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  border-radius: 0.375rem;
}

.info-label-right {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.info-value-right {
  font-size: 0.9375rem;
  color: #0f172a;
  font-weight: 600;
  text-align: right;
}

/* Info Cards Grid */
.hero-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card-large {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  grid-row: span 2;
}

.info-card-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.card-icon-large {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #FF9933 0%, #FF6B35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
}

.card-icon-large svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.card-content-large {
  flex: 1;
}

.card-pin {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.card-label {
  font-size: 0.8125rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.card-detail {
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
}

.info-card-small {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.card-icon-small {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(255, 153, 51, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-small svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #1e3a8a;
}

.card-content-small {
  flex: 1;
}

.card-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.card-label-small {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Bottom Section */
.hero-bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bottom-section-col {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.section-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.heading-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #FF9933;
}

/* Nearby Cities Grid New */
.cities-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.city-item-new {
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.city-item-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: white;
  border-color: rgba(255, 153, 51, 0.3);
}

.city-pin-new {
  font-size: 1.375rem;
  font-weight: 800;
  color: #1e3a8a;
  min-width: 80px;
  text-align: center;
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(255, 153, 51, 0.1) 100%);
  border-radius: 0.75rem;
}

.city-info-new {
  flex: 1;
}

.city-name-new {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.city-distance-new {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
}

/* Services Grid New */
.services-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-item-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.125rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-item-new:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 153, 51, 0.3);
}

.service-icon-new {
  width: 1.25rem;
  height: 1.25rem;
  color: #FF9933;
  flex-shrink: 0;
}

/* Card Components */
.card {
  background-color: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card-lg {
  background-color: white;
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.info-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.info-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #FF9933;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fact-grid div {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.2s ease;
}

.fact-grid div:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
  border-color: rgba(255, 153, 51, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.fact-grid strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fact-grid span {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

.bullet-list {
  margin: 0;
  padding-left: 18px;
  color: #374151;
  line-height: 1.625;
}

.nearby-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.625rem;
  margin: 0 0 1.25rem;
}

.nearby-list.compact {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.nearby-list li {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.2s ease;
}

.nearby-list li:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
  border-color: rgba(255, 153, 51, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nearby-list li strong {
  color: #1e3a8a;
  font-weight: 700;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.split-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.split-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.seo-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: all 0.3s ease;
}

.seo-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.seo-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #FF9933;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.list-card {
  background-color: #f9fafb;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid #eef2ff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.info-grid.mini .info-card {
  box-shadow: none;
  background-color: #f9fafb;
}

.info-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.05em;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.place-card {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 18px;
  background-color: #fefefe;
}

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

.table-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: all 0.3s ease;
}

.table-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.table-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #FF9933;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: white;
}

th {
  padding: 1rem 1.25rem;
  border-bottom: 2px solid #e2e8f0;
  text-align: left;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #64748b;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(241, 245, 249, 0.5) 100%);
}

td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  color: #0f172a;
  font-weight: 500;
}

tr:hover {
  background-color: rgba(248, 250, 252, 0.5);
}

tr:last-child td {
  border-bottom: none;
}

.note {
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 1rem;
}

.reference-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.reference-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #FF9933;
}

.reference-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.reference-links a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.reference-links a:hover {
  text-decoration: underline;
}

/* About Section */
.about-section {
  background: #f8fafc;
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.about-content-wrapper-new {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.main-content-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text-section {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.about-section-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-title-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #10b981;
}

.about-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1rem;
}

.read-more-link {
  color: #2563eb;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.read-more-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.nearby-pincodes-section {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.pincode-table-wrapper {
  overflow-x: auto;
}

.pincode-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.pincode-table thead {
  background: #f1f5f9;
}

.pincode-table th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #e2e8f0;
}

.pincode-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9375rem;
  color: #0f172a;
  font-weight: 500;
}

.pincode-table tbody tr:hover {
  background-color: #f8fafc;
}

.pincode-table tbody tr:last-child td {
  border-bottom: none;
}

/* Sidebar Styles */
.sidebar-area {
  display: flex;
  flex-direction: column;
}

.sidebar-widget-combined {
  background: white;
  border-radius: 0.75rem;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sidebar-section {
  padding: 1.5rem;
}

.sidebar-section:first-child {
  padding-top: 1.5rem;
}

.sidebar-section:last-child {
  padding-bottom: 1.5rem;
}

.sidebar-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0 1.5rem;
  border: none;
  flex-shrink: 0;
}

.sidebar-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #FF9933;
}

.sidebar-widget {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #e5e7eb;
  margin-bottom: 2rem;
}

/* District Directory Section Styles */
.directory-section {
  padding: 80px 0;
  background: #f8fafc;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.directory-category-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.directory-category-title i {
  color: #2563eb;
}

.directory-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.directory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border-color: #2563eb;
}

.directory-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.directory-card-icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.directory-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 15px;
}

.directory-card-info {
  font-size: 0.95rem;
  color: #475569;
  margin: 10px 0;
  line-height: 1.6;
}

.directory-card-address {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  gap: 8px;
}

.directory-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: all 0.2s;
}

.directory-card-btn:hover {
  gap: 12px;
}

.sidebar-widget h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #FF9933;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link-list li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #475569;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 0.5rem 0;
}

.link-list li a i {
  color: #FF9933;
  font-size: 0.875rem;
  width: 1rem;
  text-align: center;
}

.link-list li a:hover {
  color: #2563eb;
  padding-left: 0.5rem;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.view-all-link:hover {
  gap: 0.75rem;
  color: #1d4ed8;
}

.promo-widget {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  border: none;
}

.promo-widget h3 {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.promo-widget p {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.btn-outline-sidebar {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.btn-outline-sidebar:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.sidebar-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #FF9933;
}

.states-list,
.cities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 500px;
  overflow-y: auto;
}

.states-list::-webkit-scrollbar,
.cities-list::-webkit-scrollbar {
  width: 6px;
}

.states-list::-webkit-scrollbar-track,
.cities-list::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.states-list::-webkit-scrollbar-thumb,
.cities-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.states-list::-webkit-scrollbar-thumb:hover,
.cities-list::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.states-list li,
.cities-list li {
  margin: 0;
}

.states-list a,
.cities-list a {
  display: block;
  padding: 0.625rem 0.875rem;
  color: #475569;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.states-list a:hover,
.cities-list a:hover {
  background: rgba(255, 153, 51, 0.1);
  color: #1e3a8a;
  padding-left: 1rem;
}

.states-list a[href="#"]:focus,
.cities-list a[href="#"]:focus {
  background: rgba(255, 153, 51, 0.15);
  color: #1e3a8a;
}

/* Premium Pincode Page Styles */
.pin-hero {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pin-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 70%);
  pointer-events: none;
}

.breadcrumb-nav-premium ol {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.breadcrumb-nav-premium li {
  font-size: 0.9rem;
  color: #94a3b8;
}

.breadcrumb-nav-premium a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-nav-premium a:hover {
  color: white;
}

.breadcrumb-nav-premium li.active {
  color: #2563eb;
  font-weight: 600;
}

.pin-hero h1 {
  font-size: 2.75rem;
  font-weight: 850;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.pin-hero h1 span {
  color: #60a5fa;
  font-size: 1.5rem;
  font-weight: 600;
}

.pin-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.hero-cta-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  color: #1e293b;
  max-width: 350px;
}

.cta-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.cta-header i {
  color: #2563eb;
  font-size: 1.5rem;
}

.cta-header span {
  font-weight: 800;
  font-size: 1.1rem;
}

.btn-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #2563eb;
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 20px;
}

.btn-premium:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.pin-details-grid {
  padding: 80px 0;
  background: #f8fafc;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.spec-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.2s;
}

.spec-card:hover {
  border-color: #2563eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.spec-card i {
  font-size: 1.5rem;
  color: #2563eb;
  background: #eff6ff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.spec-card label {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.spec-card span {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.article-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 40px 0 20px 0;
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 30px 0 15px 0;
}

.article-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

.info-alert {
  background: #eff6ff;
  border-left: 5px solid #2563eb;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

.info-alert i {
  color: #2563eb;
  font-size: 1.5rem;
  margin-top: 5px;
}

.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.s-card {
  background: white;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}

.s-card i {
  color: #10b981;
}

.faq-section-premium {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #e2e8f0;
}

.faq-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  background: white;
  padding: 20px 30px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: #2563eb;
}

.faq-question {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-answer {
  padding-top: 15px;
  color: #475569;
  line-height: 1.6;
}

.status-yes {
  color: #10b981 !important;
}

@media (max-width: 768px) {
  .pin-hero h1 {
    font-size: 2rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta-card {
    margin: 0 auto;
    margin-top: 40px;
  }
}

/* Base styles */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111827;
  background-color: #f8fafc;
}

h1 {
  font-size: 2.25rem;
  margin-top: 0.625rem;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 1.875rem;
  margin-top: 0;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: #374151;
  line-height: 1.625;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .info-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .hero-bottom-section {
    grid-template-columns: 1fr;
  }

  .hero-main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-main-content-left,
  .hero-main-content-right {
    text-align: center;
  }

  .about-content-wrapper-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header-wrapper {
    flex-direction: column;
    gap: 1.25rem;
  }

  table {
    min-width: auto;
  }

  .hero-section-new {
    min-height: auto;
    padding: 3rem 1rem 2rem;
    margin-bottom: 3rem;
  }

  .hero-container {
    gap: 2rem;
  }

  .hero-title-new {
    font-size: 1.75rem;
  }

  .hero-desc-new {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }

  .search-container-new {
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
  }

  .search-icon-wrapper {
    display: none;
  }

  .search-input-new {
    width: 100%;
    padding: 1rem;
  }

  .search-btn-new {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }

  .hero-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .info-card-large {
    grid-row: span 1;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .card-icon-large {
    margin: 0 auto;
  }

  .hero-bottom-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cities-grid-new {
    grid-template-columns: 1fr;
  }

  .services-grid-new {
    grid-template-columns: 1fr;
  }

  .hero-main-content {
    grid-template-columns: 1fr;
  }

  .search-suggestion {
    text-align: center;
  }

  .about-content-wrapper-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sidebar-area {
    order: -1;
  }

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

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

/* Best Places Section */
.best-places-section {
  background: #f8fafc;
  padding: 3rem 0;
}

.best-places-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  justify-content: center;
}

.best-places-icon {
  width: 2rem;
  height: 2rem;
  color: #FF9933;
}

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

.place-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.place-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.place-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #FF9933 0%, #FF6B35 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.place-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.place-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.place-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

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

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  justify-content: center;
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  color: #FF9933;
}

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

.faq-item {
  background: #f8fafc;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
  overflow: hidden;
  cursor: pointer;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #0f172a;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #f1f5f9;
}

.faq-question span {
  flex: 1;
  font-size: 1rem;
}

.faq-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: #FF9933;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 30%, #334155 100%);
  position: relative;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    /* Subtle grid pattern */
    repeating-linear-gradient(0deg,
      transparent,
      transparent 20px,
      rgba(0, 0, 0, 0.1) 20px,
      rgba(0, 0, 0, 0.1) 21px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 20px,
      rgba(0, 0, 0, 0.1) 20px,
      rgba(0, 0, 0, 0.1) 21px);
  z-index: 1;
  opacity: 0.3;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-image:
    /* Decorative wave-like shapes at bottom */
    radial-gradient(ellipse 200px 80px at 10% 100%, transparent 60%, rgba(59, 130, 246, 0.15) 60%, rgba(59, 130, 246, 0.15) 70%, transparent 70%),
    radial-gradient(ellipse 150px 60px at 30% 100%, transparent 55%, rgba(59, 130, 246, 0.12) 55%, rgba(59, 130, 246, 0.12) 65%, transparent 65%),
    radial-gradient(ellipse 250px 100px at 50% 100%, transparent 65%, rgba(59, 130, 246, 0.18) 65%, rgba(59, 130, 246, 0.18) 75%, transparent 75%),
    radial-gradient(ellipse 180px 70px at 70% 100%, transparent 60%, rgba(59, 130, 246, 0.15) 60%, rgba(59, 130, 246, 0.15) 70%, transparent 70%),
    radial-gradient(ellipse 160px 65px at 90% 100%, transparent 58%, rgba(59, 130, 246, 0.12) 58%, rgba(59, 130, 246, 0.12) 68%, transparent 68%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.5;
}

.footer-content {
  position: relative;
  z-index: 2;
}

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

.footer-column {
  color: white;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
}

/* About Page Styles */
.about-hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #FF9933 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
}

.about-content-section {
  background: #ffffff;
  padding: 3rem 0;
}

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

.about-main-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #FF9933;
}

.content-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

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

.feature-card {
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #FF9933;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #FF9933 0%, #FF6B35 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF9933;
  font-weight: 700;
  font-size: 1.25rem;
}

.benefits-list li strong {
  color: #0f172a;
}

/* Contact Page Styles */
.contact-hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
}

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

.contact-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #FF9933 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
}

.contact-content-section {
  background: #ffffff;
  padding: 3rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: #1f2937;
  background: white;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #FF9933;
  box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

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

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #FF9933 0%, #FF6B35 50%, #1e3a8a 100%);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 153, 51, 0.4);
}

.submit-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.info-description {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-card-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #FF9933 0%, #FF6B35 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.info-card-content {
  flex: 1;
}

.info-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.info-card-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.info-card-text a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-card-text a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.help-section {
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 153, 51, 0.2);
}

.help-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.help-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

/* Responsive for About and Contact Pages */
@media (max-width: 768px) {

  .about-hero-title,
  .contact-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle,
  .contact-hero-subtitle {
    font-size: 1rem;
  }

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

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

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

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

/* SEO Content Section */
.seo-content-section {
  background: #ffffff;
  padding: 3rem 0;
}

.seo-content-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.seo-content-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
}

.seo-content-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.seo-content-body p {
  margin-bottom: 1.5rem;
}

.seo-content-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.seo-content-body li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.seo-content-body strong {
  color: #0f172a;
  font-weight: 600;
}
/* ========================================= */
/* PREMIUM DESIGN SYSTEM UPGRADES (2024 UI)  */
/* ========================================= */

/* 1. Global Typography */
body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
}

/* 2. Glassmorphism Hero Info Card (Overrides) */
.hero-right-info-card {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-right-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    background: rgba(255, 255, 255, 0.8) !important;
}

/* 3. Search Bar Pulsing Focus */
.search-container-new {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-container-new:focus-within {
    box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border-color: #FF9933 !important;
    transform: scale(1.02);
}
.search-container-new:focus-within .search-icon-wrapper {
    background: #FF9933;
}
.search-container-new:focus-within .search-icon-new {
    color: white;
}

/* 4. Interactive Services Grid (Override Inline Styles) */
.service-grid-premium > div {
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: default;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
}
.service-grid-premium > div:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(37, 99, 235, 0.2) !important;
}
/* Sub-accent borders on hover */
.service-grid-premium > div::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-grid-premium > div:hover::before {
    opacity: 1;
}

/* 5. Sticky Sidebar */
aside {
    position: sticky !important;
    top: 100px !important; /* Accounts for fixed header */
    height: max-content;
}

/* 6. FAQ Accordions (Overrides inline blocks without destroying them) */
.faq-section-premium > div {
    background: #ffffff;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 16px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.faq-section-premium > div:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.faq-section-premium h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 !important;
    font-size: 1.05rem;
}
.faq-section-premium h4::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: #64748b;
    transition: transform 0.3s ease;
    margin-left: 15px;
}
.faq-section-premium > div.active h4::after {
    transform: rotate(45deg); /* Turns the plus into a visually satisfying X */
    color: #b91c1c;
}
.faq-section-premium p {
    display: none; /* Hidden by default for accordion */
    margin-top: 15px !important;
    color: #475569;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}
.faq-section-premium > div.active p {
    display: block;
    animation: fadeInDown 0.3s ease-out forwards;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================= */
/* LIVE SEARCH DROPDOWN UI                   */
/* ========================================= */

.search-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin: 0;
    padding: 8px;
    list-style: none;
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.search-dropdown-menu.active {
    display: block;
    animation: slideDown 0.2s ease-out forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 8px;
    color: #334155;
    transition: all 0.2s ease;
}

.search-dropdown-menu li a:hover {
    background: #f8fafc;
    color: #1e3a8a;
}

.search-result-icon {
    font-size: 1.25rem;
}

.search-result-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    text-align: left;
}

.search-result-text strong {
    color: #0f172a;
    font-size: 1rem;
}

.search-dropdown-menu li.no-results {
    padding: 16px;
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    font-style: italic;
}
