@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
  --bg-color: #0d0b18;
  --card-bg: rgba(26, 21, 44, 0.6);
  --text-primary: #ffffff;
  --text-secondary: #c3b5fd;
  --accent-color: #fbbf24; /* Warm Gold */
  --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --mega-gradient: linear-gradient(135deg, #ff007f 0%, #7f003f 100%);
  --diamond-gradient: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  --vip-gradient: linear-gradient(135deg, #a855f7 0%, #6b21a8 100%);
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
  --normal-gradient: linear-gradient(135deg, #475569 0%, #1e293b 100%);
  --danger-color: #ef4444;
  --success-color: #10b981;
  --font-main: 'Outfit', sans-serif;
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 80px; /* space for floating buttons */
}

/* Glassmorphism containers */
.glass {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header & SEO Intro */
header {
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15) 0%, rgba(13, 11, 24, 0) 70%);
}

.logo-wrapper {
  margin-bottom: 10px;
  display: inline-block;
}

.logo-img {
  max-width: 250px;
  height: auto;
  display: block;
}

.seo-text {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

/* Showcase Headers */
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 20px 15px;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title.mega {
  color: #f87171;
  text-shadow: none;
}

.section-title.vip {
  color: #fbbf24;
  text-shadow: none;
}

.section-title.normal {
  color: #94a3b8;
  text-shadow: none;
}

.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge.mega-badge {
  background: var(--mega-gradient);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(255, 0, 127, 0.3);
}

.badge.diamond-badge {
  background: var(--diamond-gradient);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.badge.vip-badge {
  background: var(--vip-gradient);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.badge.gold-badge {
  background: var(--gold-gradient);
  color: #0d0b18 !important;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

/* Model Container & Cards */
.model-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Card: 1 model per row */
.model-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.model-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

/* Images Row (Horizontal Scroll) */
.images-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  height: 350px;
  position: relative;
  background-color: #120e22;
}

/* Custom scrollbar for images row */
.images-container::-webkit-scrollbar {
  height: 6px;
}
.images-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.images-container::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 3px;
}

.model-image-wrapper {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  position: relative;
}

.model-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Scroll Indicators */
.scroll-hint {
  position: absolute;
  right: 15px;
  top: 15px;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.image-count-badge {
  position: absolute !important;
  top: 6px !important;
  left: 6px !important;
  background: rgba(13, 11, 24, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  padding: 3px 6px !important;
  border-radius: 4px !important;
  font-size: 0.6rem !important;
  font-weight: 700 !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  gap: 3px !important;
  pointer-events: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
}

/* Info Bar at the Bottom (Matches the User's Image Example) */
.info-bar {
  background: linear-gradient(to right, #632b7a 0%, #3e1b5b 35%, #1a0833 100%);
  padding: 15px 20px;
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.info-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.payment-warning {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff7ed;
  border: 1px solid #fdba74;
  border-left: 4px solid #ea580c;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 16px 0 8px;
  color: #9a3412;
}
.payment-warning-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(234, 88, 12, 0.12);
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-warning-body strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: #c2410c;
}
.payment-warning-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #9a3412;
}

.location-badge {
  background: #1c1917;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.info-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.info-detail-item i {
  color: #ff3399;
  font-size: 1rem;
}

.info-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
}

.phone-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-number i {
  color: #25d366;
  font-size: 1.2rem;
}

.detail-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
}

.detail-btn:hover {
  background: #fff;
  color: #000;
}

/* See More Button Container */
.see-more-container {
  text-align: center;
  margin: 40px auto;
}

.btn-primary {
  background: var(--accent-gradient);
  border: none;
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
  transition: var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

/* Floating WhatsApp Application Button (SOL ALT - Bottom Left) */
.floating-apply-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse-green 2s infinite;
}

.floating-apply-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.floating-apply-btn i {
  font-size: 28px;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #151124;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 100%;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #2ae770 0%, #16a393 100%);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Footer Section */
footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
}

/* Detail Page Specific Styling */
.detail-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 600;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.detail-gallery-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.detail-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-desc {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-top: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-desc h3 {
  margin-bottom: 12px;
  color: var(--accent-color);
}

/* Responsive Grid for Showcases (Fallback or Normal Listing Grid) */
@media (min-width: 768px) {
  .model-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    max-width: 1200px;
  }
}

/* Tablet-specific styles (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .model-list {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px !important;
    padding: 0 15px !important;
  }
  .seo-content-grid {
    padding: 0 15px !important;
  }
  .content-card {
    padding: 25px !important;
  }
  .images-container {
    height: 300px !important;
  }
}

/* ==========================================================================
   DESKTOP & TABLET PREMIUM IMAGE LIGHTBOX MODAL
   ========================================================================== */
#lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 9, 20, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

#lightbox-modal.active .lightbox-image-container img {
  transform: scale(1);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  z-index: 100000;
}

.lightbox-nav-btn:hover {
  background: var(--accent-color);
  color: #0d0b18;
  border-color: var(--accent-color);
}

.lightbox-prev-btn {
  left: -20px;
}

.lightbox-next-btn {
  right: -20px;
}

@media (max-width: 768px) {
  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .lightbox-prev-btn {
    left: 5px;
  }
  .lightbox-next-btn {
    right: 5px;
  }
}

.lightbox-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close-btn:hover {
  color: var(--danger-color);
}

.lightbox-counter {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}


/* ==========================================================================
   MOTION REVEAL ANIMATIONS (Framer Motion Mimic)
   ========================================================================== */

.motion-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.motion-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.motion-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

.motion-slide-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-slide-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger transition delay classes */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Dynamic Spring Hover Interactions */
.motion-hover-spring {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.motion-hover-spring:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(251, 191, 36, 0.3);
}

/* ==========================================================================
   MOBILE ROW COMPACT VIEWPORT STYLING (Fits 5 models per screen)
   ========================================================================== */

@media (max-width: 767px) {
  .model-list {
    padding: 0 10px !important;
    gap: 16px !important;
  }

  .model-card {
    display: flex !important;
    flex-direction: row-reverse !important; /* text details on the left, images on the right */
    justify-content: flex-end !important;
    height: 120px !important;
    border-radius: 8px !important;
    margin-bottom: 0 !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    position: relative !important;
  }

  /* Left Side: Info details */
  .model-card .info-bar {
    flex: 1 1 auto !important;
    min-width: 145px !important;
    width: auto !important;
    padding: 8px 10px !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    gap: 2px !important;
    background: linear-gradient(to right, #1a162b 0%, #110d1e 100%) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
  }

  .model-card .info-header {
    display: block !important;
  }

  .model-card .info-name {
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: #ffffff !important;
  }

  .model-card .info-details {
    gap: 3px !important;
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .model-card .info-detail-item {
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: var(--text-secondary) !important;
  }

  .model-card .info-detail-item svg,
  .model-card .info-detail-item i {
    width: 9px !important;
    height: 9px !important;
  }

  .model-card .phone-number {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    gap: 4px !important;
    color: #ffffff !important;
  }

  .model-card .phone-number svg,
  .model-card .phone-number i {
    width: 10px !important;
    height: 10px !important;
  }

  .model-card .detail-btn {
    padding: 5px 12px !important;
    font-size: 0.65rem !important;
    border-radius: 6px !important;
    text-align: center !important;
    width: auto !important;
    display: inline-block !important;
    align-self: flex-start !important;
    background: var(--accent-gradient) !important;
    color: #0d0b18 !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 2px 5px rgba(251, 191, 36, 0.2) !important;
  }

  .model-card .info-footer {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 4px !important;
    justify-content: flex-end !important;
  }

  /* Right column: Images Scroll Container */
  .model-card .amp-images-scroll,
  .model-card .images-container {
    flex: 0 0 100px !important;
    width: 100px !important;
    max-width: 100px !important;
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    height: 120px !important;
    background-color: #0b0914 !important;
    position: relative !important;
    padding: 0 !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }

  .model-card .amp-images-scroll::-webkit-scrollbar,
  .model-card .images-container::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .model-card .amp-image-item,
  .model-card .model-image-wrapper {
    flex: 0 0 100px !important;
    width: 100px !important;
    height: 120px !important;
    position: relative !important;
    margin-right: 0 !important;
    scroll-snap-align: start !important;
  }

  .model-card .amp-image-item amp-img img,
  .model-card .amp-image-item amp-img,
  .model-card .model-image-wrapper img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }

  .model-card .scroll-hint {
    display: none !important;
  }

  /* Location badge sits on bottom-right overlaying images */
  .model-card .location-badge {
    position: absolute !important;
    right: 6px !important;
    bottom: 6px !important;
    z-index: 10 !important;
    background: rgba(0, 0, 0, 0.75) !important;
    border: 1px solid var(--accent-color) !important;
    color: var(--accent-color) !important;
    font-size: 0.58rem !important;
    font-weight: 800 !important;
    padding: 2px 5px !important;
    border-radius: 3px !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
  }

  .model-card .info-actions {
    margin-top: 2px !important;
  }

  /* Small floating apply button on mobile to prevent clipping left details */
  .floating-apply-btn {
    width: 48px !important;
    height: 48px !important;
    left: 15px !important;
    bottom: 15px !important;
  }
  .floating-apply-btn svg,
  .floating-apply-btn i {
    width: 22px !important;
    height: 22px !important;
    font-size: 22px !important;
  }
}

/* ==========================================================================
   BLOG STYLE EDITORIAL SECTION (SEO MASKED AS PREMIUM MAGAZINE ARTICLES)
   ========================================================================== */
.rich-seo-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .rich-seo-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .rich-seo-header {
    grid-column: span 2 !important;
  }
  .seo-section:nth-of-type(5) {
    grid-column: span 2 !important; /* Standartlar kartı tam satır kaplasın */
  }
}

.rich-seo-header {
  text-align: center;
  margin-bottom: 20px;
  background: rgba(20, 17, 33, 0.4);
  border: 1px solid rgba(251, 191, 36, 0.08);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.rich-seo-header h2 {
  font-size: 2.2rem;
  color: #fbbf24;
  margin-bottom: 15px;
  font-family: inherit;
}

.rich-seo-header .intro-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}

.seo-section {
  background: rgba(26, 21, 44, 0.6);
  border: 1px solid rgba(251, 191, 36, 0.08);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.seo-section::before {
  content: "📖 EDİTÖRÜN SEÇİMİ • OKUMA SÜRESİ: 4 DK";
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-color);
  background: rgba(251, 191, 36, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.seo-section:nth-of-type(2)::before {
  content: "🗺️ BÖLGESEL REHBER • OKUMA SÜRESİ: 3 DK";
}
.seo-section:nth-of-type(3)::before {
  content: "🌟 LÜKS REFAKAT • OKUMA SÜRESİ: 5 DK";
}
.seo-section:nth-of-type(4)::before {
  content: "👑 DETAYLAR VE GÜVENLİK • OKUMA SÜRESİ: 4 DK";
}
.seo-section:nth-of-type(5)::before {
  content: "🤝 İŞ ORTAKLIĞI VE BAŞVURU • OKUMA SÜRESİ: 2 DK";
}

.seo-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.25);
  background: rgba(26, 21, 44, 0.85);
}

.seo-section h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.seo-section p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 15px;
}

.seo-location-list,
.seo-technical-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.seo-location-list li,
.seo-technical-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 20px;
}

.seo-location-list li::before,
.seo-technical-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.seo-article-footer {
  grid-column: span 2;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

/* ==========================================================================
   DETAIL CARD SYSTEM (DECOUPLED FROM LIST CARDS TO PREVENT MOBILE OVERRIDES)
   ========================================================================== */
.detail-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.detail-card .images-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  position: relative;
  background-color: #120e22;
  width: 100%;
}

/* Custom scrollbar for images row */
.detail-card .images-container::-webkit-scrollbar {
  height: 6px;
}
.detail-card .images-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.detail-card .images-container::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 3px;
}

.detail-card .model-image-wrapper {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  position: relative;
}

.detail-card .model-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-card .info-bar {
  background: linear-gradient(to right, #632b7a 0%, #3e1b5b 35%, #1a0833 100%);
  padding: 20px 25px;
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.detail-card .info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-card .info-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-card .location-badge {
  background: #1c1917;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  z-index: auto !important;
  margin: 0 !important;
}

.detail-card .info-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-card .info-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
}

.detail-card .info-detail-item i {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .detail-card .images-container {
    height: 350px !important;
  }
  
  .detail-card .info-name {
    font-size: 1.4rem !important;
  }
  
  .detail-card .location-badge {
    font-size: 0.75rem !important;
    padding: 4px 8px !important;
    position: static !important;
  }
}

/* ==========================================================================
   SEO REGIONS & TAGS SECTION CLASSES
   ========================================================================== */
.seo-details {
  margin: 30px 15px 15px;
  background: rgba(20, 17, 33, 0.7);
  border: 1px solid rgba(251, 191, 36, 0.12);
  border-radius: 8px;
  padding: 15px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.seo-summary {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fbbf24;
  cursor: pointer;
  outline: none;
  padding: 5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.seo-summary-hint {
  font-size: 0.8rem;
  color: #a7a2cb;
}
.seo-tags-container {
  margin-top: 15px;
  max-height: 250px;
  overflow-y: auto;
  font-size: 0.72rem;
  color: #a7a2cb;
  padding: 15px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  line-height: 1.8;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.seo-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
}
.seo-tag-span {
  display: inline-block;
  background: rgba(217, 119, 6, 0.06);
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 4px;
  padding: 2px 8px;
  color: #fbbf24;
  font-family: monospace;
  white-space: nowrap;
}

.seo-tag-link {
  display: inline-block;
  font-family: monospace;
  white-space: nowrap;
  font-size: 0.72rem;
  color: #a7a2cb;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.seo-tag-link:hover {
  border-color: #fbbf24;
  color: #fbbf24;
}

/* ==========================================================================
   MODEL SEO LINKS LAYOUT
   ========================================================================== */
.model-seo-links-container {
  margin: 30px 15px 15px;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(251, 191, 36, 0.1);
  background: rgba(18, 14, 30, 0.6);
}

.model-seo-links-container h3 {
  font-size: 1.4rem;
  color: #fbbf24;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.model-seo-links-container p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.model-seo-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.seo-model-link {
  font-size: 0.85rem;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.seo-model-link:hover {
  border-color: #fbbf24;
  background: rgba(251, 191, 36, 0.05);
  color: #fbbf24;
  transform: translateY(-1px);
}

/* Text Logo - Ankara Escort */
.text-logo {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
}
.text-logo span {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Showcase Headers */
.showcase-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 15px;
  margin: 15px 20px 0;
  border-radius: 6px 6px 0 0;
}
.showcase-header h2 {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}
.mega-header {
  background: #090614;
  border: 2px solid #ec4899;
  color: #fff;
  box-shadow: 0 0 12px rgba(236,72,153,0.35);
}
.mega-header i { color: #ec4899; }
.diamond-header {
  background: #000;
  border-bottom: 1px solid #333;
  color: #fff;
}
.vip-header {
  background: linear-gradient(90deg, #1e1b4b, #4c1d95, #1e1b4b);
  border: 1px solid #6d28d9;
  color: #fff;
}
.gold-header {
  background: radial-gradient(circle, #18181b, #09090b);
  border: 1px solid #eab308;
  color: #fff;
}
.normal-header {
  background: #0f172a;
  border-left: 5px solid #a81c1c;
  color: #fff;
}
.badge-label {
  background: #a81c1c;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  margin-right: 8px;
}
.showcase-list {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.empty-showcase {
  text-align: center;
  padding: 30px;
  color: var(--text-secondary);
}

/* Marquee for desktop model cards */
.model-card {
  position: relative;
  height: 220px;
  border-radius: 0;
  overflow: hidden;
  border-bottom: 1.5px solid rgba(255,255,255,0.15);
  background: #0b0914;
}
.model-card .info-bar {
  position: absolute;
  top: 0; left: 0;
  width: 55%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 65%, transparent 100%);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.model-card .location-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
}
.marquee-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.marquee-track {
  position: relative;
  width: 100%; height: 100%;
}
.marquee-track.track-2 { animation: marquee-2 10s linear infinite; }
.marquee-track.track-3 { animation: marquee-3 15s linear infinite; }
.marquee-track.track-4 { animation: marquee-4 20s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-2 { 0%{transform:translateX(0)} 100%{transform:translateX(-90%)} }
@keyframes marquee-3 { 0%{transform:translateX(0)} 100%{transform:translateX(-135%)} }
@keyframes marquee-4 { 0%{transform:translateX(0)} 100%{transform:translateX(-180%)} }
.marquee-item {
  position: absolute;
  top: 0; left: 0;
  width: 45%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-right: 1.5px solid #000;
}
.single-image-wrap, .no-image-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.no-image-placeholder {
  background: #120e22;
  color: var(--text-secondary);
  flex-direction: column;
  text-decoration: none;
  gap: 8px;
}

/* Footer */
.site-footer {
  background: #090810;
  border-top: 1px solid rgba(251,191,36,0.15);
  padding: 40px 20px 20px;
  margin-top: 40px;
}
.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.footer-brand h3 { font-size: 1.3rem; }
.footer-brand h3 span { color: #fbbf24; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4, .footer-disclaimer h4 { color: #fbbf24; margin-bottom: 10px; }
.footer-links a { color: #94a3b8; text-decoration: none; }
.footer-disclaimer p { color: #64748b; font-size: 0.85rem; line-height: 1.5; }
.footer-bottom {
  max-width: 1000px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 0.8rem;
}
.footer-bottom a { color: #fbbf24; }

.footer-seo-blurb {
  max-width: 1000px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-seo-blurb p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}
.footer-seo-blurb a {
  color: #fbbf24;
  text-decoration: none;
}
.footer-seo-blurb a:hover { text-decoration: underline; }

.footer-links--legal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px 14px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-links--legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.84rem;
}
.footer-links--legal a:hover { color: #fbbf24; }
.footer-copyright {
  max-width: 1000px;
  margin: 16px auto 0;
}
.footer-copyright p {
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 0 0 0.35rem;
}

/* SEO Section */
.seo-content-section { margin: 30px 20px; padding: 25px; }
.seo-regions-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 15px 0;
}
.seo-regions-list li { color: var(--text-secondary); font-size: 0.9rem; }
.seo-regions-list i { color: #fbbf24; margin-right: 6px; }
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.seo-tag {
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.25);
  color: #fbbf24;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}
.article-card { padding: 20px; margin: 0 20px 15px; }
.article-card h3 a { color: #fff; text-decoration: none; }
.articles-section { margin: 40px 0; }
.call-btn { background: rgba(59,130,246,0.15) !important; border-color: rgba(59,130,246,0.3) !important; color: #60a5fa !important; }
.whatsapp-btn { background: rgba(34,197,94,0.15) !important; border-color: rgba(34,197,94,0.3) !important; color: #4ade80 !important; }
.telegram-btn { background: rgba(6,182,212,0.15) !important; border-color: rgba(6,182,212,0.3) !important; color: #22d3ee !important; }
.detail-info-bar { position: relative !important; width: 100% !important; background: linear-gradient(to right, #632b7a, #1a0833) !important; }

.seo-model-link i {
  color: #fbbf24;
  font-size: 0.8rem;
}

/* ========== BLOG HOME (Desktop Ana Site) ========== */
.blog-home { padding-bottom: 100px; background:
  radial-gradient(ellipse 80% 50% at 50% -10%, rgba(251,191,36,0.12), transparent 55%),
  linear-gradient(180deg, #120e22 0%, #0d0b18 40%, #0a0814 100%); }

.blog-hero { padding: 0 0 48px; position: relative; overflow: hidden; }
.blog-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px; max-width: 1100px; margin: 0 auto;
}
.blog-nav-links { display: flex; align-items: center; gap: 18px; }
.blog-nav-links a { color: #c3b5fd; font-size: 0.9rem; font-weight: 600; text-decoration: none; }
.blog-nav-links a:hover { color: #fbbf24; }
.nav-cta {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #fff !important; padding: 8px 14px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 6px;
}
.blog-hero-inner {
  max-width: 780px; margin: 40px auto 0; text-align: center; padding: 0 24px;
}
.blog-eyebrow {
  font-size: 0.75rem; letter-spacing: 4px; color: #fbbf24;
  font-weight: 700; margin-bottom: 14px;
}
.blog-brand {
  font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 16px;
}
.blog-brand em {
  font-style: normal;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-lead {
  color: #c3b5fd; font-size: 1.05rem; line-height: 1.7;
  max-width: 560px; margin: 0 auto 28px; font-weight: 300;
}
.blog-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-outline {
  display: inline-flex; align-items: center; padding: 12px 24px;
  border: 1px solid rgba(251,191,36,0.4); color: #fbbf24;
  border-radius: 30px; font-weight: 700; font-size: 0.9rem; text-decoration: none;
}
.btn-outline:hover { background: rgba(251,191,36,0.1); }

.district-strip {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  padding: 0 20px 36px; max-width: 900px; margin: 0 auto;
}
.district-chip {
  padding: 7px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(251,191,36,0.2);
  color: #e2e8f0; text-decoration: none; transition: all 0.2s;
}
.district-chip:hover { border-color: #fbbf24; color: #fbbf24; background: rgba(251,191,36,0.08); }

.blog-main { max-width: 960px; margin: 0 auto; padding: 0 20px 40px; }
.blog-main-head { margin-bottom: 28px; text-align: center; }
.blog-main-head h2 {
  font-size: 1.5rem; text-transform: uppercase; letter-spacing: 1px;
  color: #fbbf24; margin-bottom: 8px;
}
.blog-main-head p { color: #94a3b8; font-size: 0.95rem; }

.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.blog-card {
  background: rgba(26,21,44,0.7); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 22px; transition: transform 0.25s, border-color 0.25s;
}
.blog-card:hover { transform: translateY(-3px); border-color: rgba(251,191,36,0.35); }
.blog-card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(251,191,36,0.08), rgba(26,21,44,0.9));
  border-color: rgba(251,191,36,0.25);
}
.blog-card-meta {
  display: flex; gap: 14px; font-size: 0.75rem; color: #94a3b8;
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card-featured h3 { font-size: 1.45rem; }
.blog-card h3 a { color: #fff; text-decoration: none; }
.blog-card h3 a:hover { color: #fbbf24; }
.blog-card p { color: #a7a2cb; font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }
.blog-read {
  color: #fbbf24; font-weight: 700; font-size: 0.85rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}

@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-nav { flex-direction: column; gap: 12px; }
  .blog-brand { font-size: 2.2rem; }
}

.blog-section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.35);
  color: #fbbf24; font-size: 0.72rem; font-weight: 800; letter-spacing: 2px;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.blog-tag {
  background: #0f172a; color: #fbbf24; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 1px; padding: 2px 8px; border-radius: 4px;
}
.blog-loader, .blog-end {
  text-align: center; padding: 28px 12px; color: #94a3b8; font-size: 0.9rem;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.blog-loader[hidden], .blog-end[hidden] { display: none !important; }
.blog-loader-spin {
  width: 28px; height: 28px; border: 3px solid rgba(251,191,36,0.2);
  border-top-color: #fbbf24; border-radius: 50%;
  animation: blog-spin 0.8s linear infinite;
}
@keyframes blog-spin { to { transform: rotate(360deg); } }
.floating-apply-btn .i { color: #fff; }
.info-detail-item .i { margin-right: 6px; }
.phone-number .i { margin: 0 4px; }
