/* ==========================================================================
   Pokkoo - Core Production Stylesheet
   Pure Vanilla CSS (Zero Framework Dependencies)
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* --- Root Variables & Theme --- */
:root {
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --bg-page: #fff7f7;
  --bg-white: #ffffff;
  --bg-card: #ffffff;

  --primary-red: #dc2626;
  --primary-red-hover: #b91c1c;
  --primary-red-50: #fef2f2;
  --primary-red-100: #fee2e2;
  --primary-red-200: #fecaca;
  --primary-red-300: #fca5a5;
  --primary-red-400: #f87171;
  --primary-red-500: #ef4444;
  --primary-red-600: #dc2626;
  --primary-red-700: #b91c1c;

  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;

  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --whatsapp-green: #25D366;
  --whatsapp-hover: #1ebe5d;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-heading);
  background-color: var(--bg-page);
  color: var(--gray-900);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

input {
  font-family: inherit;
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.font-inter {
  font-family: var(--font-body) !important;
}

/* --- Container Utility --- */
.container-max {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container-max {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-max {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 0 rgba(220, 38, 38, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background-color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(252, 165, 165, 0.5);
  color: #ffffff;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}

.brand-name span {
  color: var(--primary-red);
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-post-job {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background-color: var(--primary-red);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(254, 202, 202, 0.6);
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.btn-post-job:hover {
  background-color: var(--primary-red-hover);
}

/* ==========================================================================
   SEARCH SECTION / HERO
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f43f5e 100%);
  padding: 3rem 1rem 3.5rem 1rem;
  z-index: 20;
}

@media (min-width: 640px) {
  .hero-section {
    padding: 4rem 1.5rem;
  }
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-shape-1 {
  pointer-events: none;
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-shape-2 {
  pointer-events: none;
  position: absolute;
  bottom: -4rem;
  left: -4rem;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-shape-3 {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 33%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.hero-shape-4 {
  pointer-events: none;
  position: absolute;
  bottom: 2rem;
  right: 25%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero-content {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  z-index: 10;
}

.search-box-card {
  position: relative;
  z-index: 30;
  background-color: #ffffff;
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 50px -12px rgba(127, 29, 29, 0.25);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .search-box-card {
    flex-direction: row;
  }
}

/* City Dropdown */
.city-picker-container {
  position: relative;
  z-index: 40;
  flex: 1;
  min-width: 0;
}

.city-picker-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background-color: var(--primary-red-50);
  text-align: left;
  transition: background-color 0.15s ease;
}

.city-picker-btn:hover {
  background-color: rgba(254, 226, 226, 0.7);
}

.city-picker-text {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--gray-400);
}

.city-picker-text.selected {
  color: var(--gray-900);
}

.city-picker-chevron {
  transition: transform 0.2s ease;
  color: var(--primary-red-400);
  flex-shrink: 0;
}

.city-picker-chevron.open {
  transform: rotate(180deg);
}

.city-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.375rem;
  background-color: #ffffff;
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(220, 38, 38, 0.12);
  border: 1px solid var(--primary-red-100);
  z-index: 9999;
  overflow: hidden;
}

.city-dropdown-menu.show {
  display: block;
}

.city-search-input-wrap {
  padding: 0.625rem;
}

.city-search-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  background-color: var(--primary-red-50);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
}

.city-search-input::placeholder {
  color: var(--primary-red-300);
}

.city-list {
  max-height: 12rem;
  overflow-y: auto;
  padding-bottom: 0.5rem;
}

.city-item-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  text-align: left;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.city-item-link:hover,
.city-item-link:focus {
  background-color: var(--primary-red-50);
  color: var(--primary-red);
}

.city-item-link svg {
  color: var(--primary-red-400);
  transition: color 0.15s ease, transform 0.15s ease;
}

.city-item-link:hover svg {
  color: var(--primary-red-600);
  transform: scale(1.1);
}

.city-no-results {
  padding: 0.75rem 1rem;
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
}

/* Filter Input Field */
.trade-input-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background-color: var(--gray-50);
}

.trade-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}

.trade-input::placeholder {
  color: var(--gray-400);
}

/* Search Submit Button */
.btn-search-workers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  background-color: var(--primary-red);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(248, 113, 113, 0.4);
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.btn-search-workers:hover {
  background-color: var(--primary-red-hover);
}

/* ==========================================================================
   MAIN LISTING SECTION
   ========================================================================== */
.main-section {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 640px) {
  .main-section {
    padding: 3rem 1.5rem;
  }
}

.section-header {
  margin-bottom: 2.5rem;
}

.header-accent {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.header-accent-bar {
  display: block;
  width: 32px;
  height: 3px;
  border-radius: var(--radius-full);
  background-color: var(--primary-red);
}

.header-accent-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-red-500);
}

.main-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .main-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .main-title {
    font-size: 3rem;
  }
}

.main-title span {
  color: var(--primary-red);
}

/* Profile Cards List */
.cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.worker-card {
  background-color: #ffffff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--primary-red-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.worker-card:hover {
  box-shadow: 0 20px 25px -5px rgba(254, 226, 226, 0.6);
  border-color: var(--primary-red-200);
}

.card-row {
  display: flex;
  flex-direction: row;
}

/* Card Image Column */
.card-image-col {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  align-self: stretch;
  overflow: hidden;
}

@media (min-width: 640px) {
  .card-image-col {
    width: 175px;
  }
}

.card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Card Content Column */
.card-content-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 1.125rem;
}

@media (min-width: 640px) {
  .card-content-col {
    padding: 1.25rem 1.5rem;
  }
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.worker-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.35;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .worker-name {
    font-size: 17px;
  }
}

/* Description */
.worker-desc {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.55;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .worker-desc {
    font-size: 13.5px;
    line-height: 1.6;
    margin-top: 0.625rem;
    margin-bottom: 1rem;
  }
}

/* Action Buttons */
.card-actions-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .card-actions-row {
    gap: 0.75rem;
  }
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background-color: var(--primary-red);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 6px -1px rgba(254, 202, 202, 0.8);
  transition: background-color 0.15s ease, transform 0.1s ease;
}

@media (min-width: 640px) {
  .btn-call {
    padding: 0.625rem 1.25rem;
    font-size: 13px;
  }
}

.btn-call:hover {
  background-color: var(--primary-red-hover);
}

.btn-call:active {
  transform: scale(0.95);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background-color: var(--whatsapp-green);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 6px -1px rgba(187, 247, 208, 0.8);
  transition: background-color 0.15s ease, transform 0.1s ease;
}

@media (min-width: 640px) {
  .btn-whatsapp {
    padding: 0.625rem 1.25rem;
    font-size: 13px;
  }
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
}

.btn-whatsapp:active {
  transform: scale(0.95);
}

.btn-full-profile,
.desktop-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.55rem 1.125rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--primary-red-200);
  color: var(--primary-red);
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin-left: auto;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-full-profile:hover,
.desktop-contact-btn:hover {
  background-color: var(--primary-red-50);
  border-color: var(--primary-red);
}

@media (max-width: 767px) {
  .desktop-contact-btn,
  .btn-full-profile {
    display: none !important;
  }
}

/* Load More Button */
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn-load-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-load-more:hover {
  background-color: var(--primary-red);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(254, 202, 202, 0.8);
}

.btn-load-more svg {
  transition: transform 0.2s ease;
}

.btn-load-more:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   WHY POKKOO SECTION (FULL WIDTH)
   ========================================================================== */
.why-section {
  position: relative;
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #e11d48 100%);
  overflow: hidden;
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .why-section {
    padding: 5rem 1.5rem;
  }
}

.why-shape-1 {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translate(50%, -50%);
}

.why-shape-2 {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translate(-33%, 33%);
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.375rem 1rem;
  font-size: 11px;
  font-weight: 800;
  color: var(--pink-100);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.why-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .why-title {
    font-size: 2.4rem;
  }
}

.why-title span {
  color: var(--pink-300);
}

.why-desc {
  color: var(--primary-red-100);
  font-size: 15px;
  line-height: 1.625;
  margin-bottom: 1.75rem;
  font-weight: 500;
  max-width: 32rem;
}

.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}

.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.why-feature-bullet {
  margin-top: 0.125rem;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  display: block;
}

.why-feature-text {
  font-size: 13px;
  color: #fef2f2;
  font-weight: 600;
  line-height: 1.375;
}

/* Stats 2x2 Grid */
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: background 0.15s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink-200);
  margin-top: 0.375rem;
}

.stat-sub {
  font-size: 11px;
  color: var(--primary-red-200);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ==========================================================================
   POPULAR CITIES SECTION
   ========================================================================== */
.cities-section {
  background-color: #ffffff;
  padding: 4rem 1rem;
}

.cities-wrapper {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.cities-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cities-accent-line {
  height: 1px;
  width: 32px;
  background-color: var(--primary-red-200);
}

.cities-accent-text {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-red-500);
}

.cities-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .cities-title {
    font-size: 2.2rem;
  }
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.city-pill-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 800;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.city-pill-btn:hover {
  box-shadow: var(--shadow-md);
}

.city-pill-variant-0 {
  background-color: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
  box-shadow: 0 4px 6px -1px rgba(254, 202, 202, 0.8);
}

.city-pill-variant-0:hover {
  background-color: var(--primary-red-hover);
  border-color: var(--primary-red-hover);
}

.city-pill-variant-1 {
  background-color: #ffffff;
  color: var(--primary-red);
  border-color: var(--primary-red-300);
}

.city-pill-variant-1:hover {
  background-color: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
  box-shadow: 0 4px 6px -1px rgba(254, 202, 202, 0.8);
}

.city-pill-variant-2 {
  background-color: var(--rose-50);
  color: var(--rose-700);
  border-color: var(--rose-200);
}

.city-pill-variant-2:hover {
  background-color: var(--rose-600);
  color: #ffffff;
  border-color: var(--rose-600);
}

/* ==========================================================================
   DYNAMIC CITY GUIDE & ARTICLE SECTION
   ========================================================================== */
.city-article-section {
  padding: 4.5rem 0;
  background-color: #fffaf9;
  border-top: 1px solid var(--primary-red-100);
  border-bottom: 1px solid var(--primary-red-100);
  position: relative;
}

.city-article-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem auto;
}

.city-article-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  background-color: var(--primary-red-50);
  color: var(--primary-red);
  font-size: 12px;
  font-weight: 800;
  border: 1px solid var(--primary-red-100);
  margin-bottom: 1rem;
}

.city-article-main-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .city-article-main-title {
    font-size: 32px;
  }
}

.city-article-main-title span {
  color: var(--primary-red);
}

.city-article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .city-article-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.city-article-card {
  background-color: #ffffff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--primary-red-100);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.city-article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -5px rgba(254, 202, 202, 0.4);
  border-color: var(--primary-red-200);
}

.city-article-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.city-article-card-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: var(--primary-red-50);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.city-article-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.35;
}

@media (min-width: 640px) {
  .city-article-card-title {
    font-size: 17px;
  }
}

.city-article-card-text {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.68;
  font-weight: 450;
}

/* ==========================================================================
   SVG ICONS HELPER
   ========================================================================== */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-xs {
  width: 10px;
  height: 10px;
}

.icon-sm {
  width: 14px;
  height: 14px;
}

.icon-md {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 20px;
  height: 20px;
}
