@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;
}

.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;
  }
}
