/* ===== CSS Variables ===== */
:root {
  --primary: #e91e63;
  --primary-dark: #c2185b;
  --primary-light: #fce4ec;
  --primary-gradient: linear-gradient(135deg, #f8bbd9 0%, #fce4ec 50%, #fff 100%);
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --bg-light: #fafafa;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Dancing Script', cursive;
  --container-max: 1280px;
  --header-height: 72px;
  --bottom-nav-height: 70px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--bottom-nav-height);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-search {
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}

.btn-search:hover {
  background: var(--primary-dark);
}

.btn-cta {
  background: var(--white);
  color: var(--text-dark);
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
  box-shadow: var(--shadow-md);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  order: -1;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 10px;
  color: var(--text-muted);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-link i {
  font-size: 10px;
  margin-left: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-dark);
  border-radius: 50%;
  transition: background 0.2s;
}

.icon-btn:hover {
  background: var(--bg-light);
}

.badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #ef4444;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-login {
  display: none;
  padding: 10px 20px;
  font-size: 13px;
}

/* Mobile nav overlay */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 20px;
  z-index: 99;
  align-items: stretch;
  gap: 4px;
}

.main-nav.open .nav-link {
  padding: 14px 16px;
  font-size: 16px;
}

/* ===== Search Section ===== */
.search-section {
  padding: 16px 0;
  background: var(--white);
}

.search-bar {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-row {
  display: flex;
  gap: 10px;
}

.search-row-top {
  flex-direction: row;
}

.search-row-top .search-field {
  flex: 1;
}

.search-row-bottom {
  flex-direction: row;
  align-items: center;
}

.search-field {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-field > i:first-child {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.field-content {
  flex: 1;
  min-width: 0;
}

.field-content label {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

.field-content select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.field-arrow {
  color: var(--text-light);
  font-size: 11px;
  flex-shrink: 0;
}

.search-input-wrap {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.search-input-wrap i {
  color: var(--text-light);
  font-size: 16px;
  flex-shrink: 0;
}

.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  min-width: 0;
}

.search-input-wrap input::placeholder {
  color: var(--text-light);
}

/* ===== Hero Section ===== */
.hero-section {
  padding: 0 0 24px;
}

.hero-carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--primary-gradient);
  box-shadow: var(--shadow-md);
}

.hero-slide {
  display: flex;
  flex-direction: column;
}

.hero-content {
  padding: 24px 20px 16px;
  order: 1;
}

.hero-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.hero-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.hero-script {
  display: block;
  font-family: var(--font-script);
  font-size: 48px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 4px;
}

.hero-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-feature-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 12px;
}

.hero-image {
  order: 0;
  height: 200px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ===== Section Common ===== */
.section {
  padding: 24px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.view-all i {
  font-size: 10px;
}

/* ===== Categories ===== */
.categories-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 72px;
  text-align: center;
  flex-shrink: 0;
}

.category-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  color: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.2s;
}

.category-item:hover .category-icon {
  transform: scale(1.05);
}

.category-item span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ===== Subcategories ===== */
.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px 8px;
}

.subcategory-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.subcategory-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.2s;
}

.subcategory-item:hover .subcategory-icon {
  transform: scale(1.05);
}

.subcategory-item span {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
}

/* ===== CTA Cards ===== */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cta-card {
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
  overflow: hidden;
  position: relative;
}

.cta-male {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
}

.cta-female {
  background: linear-gradient(135deg, #fce7f3 0%, #fdf2f8 100%);
}

.cta-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cta-content p {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.3;
}

.cta-illustration {
  font-size: 64px;
  opacity: 0.3;
  position: absolute;
  right: 8px;
  bottom: -8px;
}

.cta-illustration.male {
  color: #2563eb;
}

.cta-illustration.female {
  color: var(--primary);
}

/* ===== Partners ===== */
.partners-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partners-scroll::-webkit-scrollbar {
  display: none;
}

.partner-card {
  min-width: 200px;
  max-width: 220px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.partner-card:hover {
  box-shadow: var(--shadow-md);
}

.partner-image {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-badge i {
  font-size: 10px;
}

.partner-info {
  padding: 12px;
}

.partner-info h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.partner-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.partner-type {
  color: var(--text-muted);
}

.partner-distance {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
}

.partner-distance i {
  font-size: 10px;
  color: var(--primary);
}

/* ===== Features Bar ===== */
.features-bar {
  background: var(--primary-light);
  padding: 20px 0;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.feature-text strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

.feature-text span {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 8px;
}

.footer-newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 32px 0;
}

.footer-newsletter-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.newsletter-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.newsletter-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: var(--text-light);
}

.newsletter-form .btn-primary {
  background: var(--white);
  color: var(--primary);
  padding: 14px 28px;
  font-size: 15px;
}

.newsletter-form .btn-primary:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.footer-main {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  background: rgba(233, 30, 99, 0.2);
  color: var(--primary);
}

.footer-logo .logo-title {
  color: var(--white);
  font-size: 16px;
}

.footer-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-list li i {
  color: var(--primary);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.contact-list li a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.contact-list li a:hover {
  color: var(--primary);
}

.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  color: var(--white);
  transition: all 0.2s;
  max-width: 180px;
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--primary);
}

.app-badge i {
  font-size: 24px;
}

.app-badge span {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.app-badge span small {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
}

.footer-bottom {
  background: #12121f;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-payments i {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-payments i:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Bottom Navigation ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-nav-height);
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
  padding: 0 8px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  padding: 4px 8px;
  transition: color 0.2s;
}

.bottom-nav-item i {
  font-size: 20px;
}

.bottom-nav-item.active {
  color: var(--primary);
}

.bottom-nav-search {
  margin-top: -24px;
}

.search-fab {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.bottom-nav-search span {
  color: var(--primary);
  font-weight: 600;
}

.bottom-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ef4444;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Tablet (768px+) ===== */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .container {
    padding: 0 24px;
  }

  .hamburger {
    display: none;
  }

  .logo {
    flex: 0;
    justify-content: flex-start;
  }

  .logo-title {
    font-size: 16px;
  }

  .logo-tagline {
    font-size: 11px;
  }

  .btn-login {
    display: inline-flex;
  }

  .search-bar {
    flex-direction: row;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
  }

  .search-row {
    flex: unset;
  }

  .search-row-top {
    flex: 0 0 auto;
    gap: 12px;
  }

  .search-row-top .search-field {
    min-width: 160px;
  }

  .search-row-bottom {
    flex: 1;
  }

  .hero-slide {
    flex-direction: row;
    align-items: center;
    min-height: 320px;
  }

  .hero-content {
    flex: 1;
    padding: 32px;
    order: 0;
  }

  .hero-image {
    flex: 1;
    height: 320px;
    order: 1;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-script {
    font-size: 64px;
    display: inline;
  }

  .hero-feature {
    font-size: 12px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .categories-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    gap: 20px;
  }

  .category-item {
    min-width: unset;
  }

  .category-icon {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }

  .category-item span {
    font-size: 12px;
  }

  .subcategories-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 16px 12px;
  }

  .subcategory-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .subcategory-item span {
    font-size: 11px;
  }

  .cta-grid {
    gap: 20px;
  }

  .cta-card {
    padding: 24px;
    min-height: 150px;
  }

  .cta-content h3 {
    font-size: 20px;
  }

  .cta-content p {
    font-size: 13px;
  }

  .partners-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    gap: 20px;
  }

  .partner-card {
    min-width: unset;
    max-width: unset;
  }

  .partner-image {
    height: 180px;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .feature-text strong {
    font-size: 14px;
  }

  .feature-text span {
    font-size: 12px;
  }

  .bottom-nav {
    display: none;
  }

  .footer-newsletter-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .newsletter-form {
    flex-direction: row;
    width: auto;
    min-width: 400px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-apps {
    flex-direction: row;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ===== Desktop (1024px+) ===== */
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }

  .header-inner {
    gap: 24px;
  }

  .logo {
    margin-right: 8px;
  }

  .search-row-top .search-field {
    min-width: 180px;
  }

  .categories-scroll {
    grid-template-columns: repeat(10, 1fr);
  }

  .subcategories-grid {
    grid-template-columns: repeat(7, 1fr);
  }

  .partners-scroll {
    grid-template-columns: repeat(5, 1fr);
  }

  .hero-slide {
    min-height: 380px;
  }

  .hero-image {
    height: 380px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-script {
    font-size: 72px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .newsletter-text h3 {
    font-size: 24px;
  }

  .newsletter-form {
    min-width: 480px;
  }
}

/* ===== Large Desktop (1280px+) ===== */
@media (min-width: 1280px) {
  .hero-content {
    padding: 48px;
  }

  .section {
    padding: 32px 0;
  }
}

/* ===== Page Banner ===== */
.page-banner {
  background: var(--primary-gradient);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.page-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb i {
  font-size: 10px;
}

.page-banner h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
}

.page-banner p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 560px;
}

/* ===== Listing Layout ===== */
.listing-section {
  padding: 24px 0 40px;
  background: var(--bg-light);
}

.listing-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.listing-filters {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.filter-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-light);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.filter-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter-select {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  cursor: pointer;
}

.listing-count {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.listing-count strong {
  color: var(--text-dark);
}

.listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.listing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.listing-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.listing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.listing-card:hover .listing-card-image img {
  transform: scale(1.03);
}

.listing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.listing-badge.deal {
  background: #16a34a;
}

.listing-badge.featured {
  background: #d97706;
}

.listing-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.listing-favorite:hover {
  color: var(--primary);
}

.listing-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.listing-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.listing-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.listing-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.listing-card-meta i {
  color: var(--primary);
  font-size: 11px;
}

.listing-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

.listing-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.listing-price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.listing-price .old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 500;
  font-size: 13px;
  margin-right: 6px;
}

.btn-outline {
  padding: 8px 16px;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.pagination-btn:hover,
.pagination-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Blog listing cards */
.listing-card.blog-card .listing-card-image {
  height: 160px;
}

.blog-date {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.blog-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.blog-tag {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-weight: 500;
}

/* Category listing grid */
.category-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.category-listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.category-listing-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.category-listing-card .category-icon {
  width: 72px;
  height: 72px;
  font-size: 28px;
}

.category-listing-card h3 {
  font-size: 14px;
  font-weight: 700;
}

.category-listing-card p {
  font-size: 12px;
  color: var(--text-muted);
}

.category-listing-card .count {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
}

/* ===== Contact Page ===== */
.contact-section {
  padding: 32px 0 48px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-info-card .icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  margin: 0 auto 14px;
}

.contact-info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-form-wrap > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-map {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 280px;
  background: var(--bg-light);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.faq-section {
  padding: 40px 0;
  background: var(--bg-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question i {
  color: var(--primary);
  font-size: 12px;
  transition: transform 0.3s;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .page-banner h1 {
    font-size: 32px;
  }

  .filter-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .filter-chips {
    flex: 1;
    overflow: visible;
    flex-wrap: wrap;
  }

  .filter-actions {
    flex-shrink: 0;
  }

  .filter-select {
    min-width: 160px;
    flex: unset;
  }

  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-listing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-info-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .contact-map {
    height: 360px;
  }
}

@media (min-width: 1024px) {
  .listing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-listing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Details Page ===== */
.detail-section {
  padding: 24px 0 48px;
  background: var(--bg-light);
}

.detail-breadcrumb {
  padding: 16px 0 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.detail-breadcrumb .container {
  padding-bottom: 16px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.detail-gallery {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.detail-gallery-main {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #d97706;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.detail-gallery-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
}

.detail-gallery-actions button {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.detail-gallery-actions button:hover {
  color: var(--primary);
}

.detail-gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.detail-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.detail-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s;
  padding: 0;
}

.detail-thumb.active,
.detail-thumb:hover {
  border-color: var(--primary);
  opacity: 1;
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-header-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.detail-header-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.detail-header-top h1 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.detail-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.detail-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-stats i {
  color: var(--primary);
}

.detail-stats .rating {
  color: var(--text-dark);
  font-weight: 600;
}

.detail-stats .rating i {
  color: #f59e0b;
}

.detail-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.detail-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.detail-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.detail-price .old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 500;
  margin-right: 8px;
}

.detail-quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.detail-card h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-card h2 i {
  color: var(--primary);
  font-size: 16px;
}

.detail-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.detail-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.detail-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dark);
}

.detail-amenity i {
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.detail-packages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-package {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}

.detail-package:hover {
  border-color: var(--primary);
}

.detail-package-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.detail-package-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.detail-package-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.detail-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 16px;
  scrollbar-width: none;
}

.detail-tabs::-webkit-scrollbar {
  display: none;
}

.detail-tab {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-light);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.detail-tab.active {
  background: var(--primary);
  color: var(--white);
}

.detail-tab-panel {
  display: none;
}

.detail-tab-panel.active {
  display: block;
}

.detail-reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.detail-reviews-score {
  text-align: center;
}

.detail-reviews-score strong {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.detail-reviews-score span {
  font-size: 12px;
  color: var(--text-muted);
}

.detail-reviews-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.review-bar-row span:first-child {
  width: 12px;
}

.review-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.review-bar-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: var(--radius-full);
}

.detail-review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-review-item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.detail-review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.review-author-info strong {
  display: block;
  font-size: 14px;
}

.review-author-info span {
  font-size: 12px;
  color: var(--text-light);
}

.review-stars {
  color: #f59e0b;
  font-size: 12px;
  margin-bottom: 6px;
}

.review-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-enquiry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.detail-enquiry-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.detail-enquiry-card > p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-contact-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.detail-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.detail-contact-btn.whatsapp {
  background: #25d366;
  color: var(--white);
}

.detail-contact-btn.whatsapp:hover {
  background: #1da851;
}

.detail-contact-btn.call {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.detail-contact-btn.call:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.detail-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.detail-info-item i {
  color: var(--primary);
  margin-top: 2px;
  width: 16px;
}

.detail-map {
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 4px;
}

.detail-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.similar-section {
  padding: 32px 0 48px;
  background: var(--white);
}

@media (min-width: 768px) {
  .detail-gallery-main {
    height: 360px;
  }

  .detail-thumb {
    width: 88px;
    height: 64px;
  }

  .detail-header-top h1 {
    font-size: 28px;
  }

  .detail-amenities {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .detail-layout {
    grid-template-columns: 1fr 360px;
  }

  .detail-gallery-main {
    height: 420px;
  }

  .detail-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 16px);
  }
}
