/* ===== CATEGORIES SECTION ===== */
.categories-section {
  padding: 30px 30px 20px 20px;
  position: relative;
  overflow: hidden;
}

.categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: 1;
}

.categories-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
  position: relative;
  z-index: 2;
}

.categories-section__title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: var(--gray-900);
  text-align: left;
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.categories-section__subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  text-align: left;
  margin-bottom: 60px;
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
}

.categories-grid {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  justify-content: center;
}

/* 1 kategori - ortada 1 tane */
.categories-grid[data-count="1"] {
  grid-template-columns: minmax(280px, 1fr);
  max-width: 350px;
  margin: 0 auto;
}

/* 2 kategori - ortada 2 tane yan yana */
.categories-grid[data-count="2"] {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 700px;
  margin: 0 auto;
}

/* 3 kategori - ortada 3 tane yan yana */
.categories-grid[data-count="3"] {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  max-width: 1050px;
  margin: 0 auto;
}

/* 4 kategori - ortada 4 tane yan yana */
.categories-grid[data-count="4"] {
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
}

/* 5+ kategori - maksimum 4'lü satırlar halinde */
.categories-grid:not([data-count]),
.categories-grid[data-count]:not([data-count="1"]):not([data-count="2"]):not([data-count="3"]):not([data-count="4"]) {
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  height: 380px;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.category-card__image-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.category-card__image {
  width: 100%;
  background-repeat: no-repeat;
  height: 100%;
  background-size: contain;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 2, 0.3, 1);
  position: relative;
}

.category-card:hover .category-card__image {
  transform: scale(1.1);
}

.category-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.category-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.category-card__name {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--white);
  margin: 0;
  line-height: 1.2;
  text-align: center;
  transition: color 0.3s ease;
}

.category-card__view-all {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-weight-medium);
  text-align: center;
  transition: color 0.3s ease;
}
/* ===== TOURS SECTION ===== */
.tours-section {
  width: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  margin: 0;
  padding: 30px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.tours-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.tours-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.tours-section__container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.tours-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
  text-align: left;
  letter-spacing: -3px;
  position: relative;
  line-height: 1.1;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tours-section__subtitle {
  font-size: 1.1rem;
  color: #64748b;
  text-align: left;
  line-height: 1.6;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 100%;
  margin: 0 auto;
}

/* ===== VILLA CARD ===== */
.villa-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  overflow: visible;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.villa-card:hover {
  border: 1px solid rgba(0, 0, 0, 0.8);
}

/* ===== CARD IMAGE SECTION ===== */
.villa-card__image-wrapper {
  position: relative;
  height: 280px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.villa-card__image {
  width: 100%;
  background-repeat: no-repeat;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 2, 0.3, 1);
  position: relative;
}

.villa-card:hover .villa-card__image {
  transform: scale(1.08);
}

.villa-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

/* ===== BADGE ===== */
.villa-card__badge {
  position: absolute;
  top: 20px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.villa-card__badge--duration {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
}

.villa-card__badge--capacity {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  top: 20px;
  left: 10px;
}

.villa-card__badge--rooms {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  top: 20px;
  right: 10px;
  left: auto;
}

/* ===== LOCATION BADGE ===== */
.villa-card__location-badge {
  position: absolute;
  bottom: 20px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.3px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== TRANSPORT BADGE ===== */
.villa-card__transport-badge {
  position: absolute;
  bottom: 20px;
  right: 10px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.villa-card__location-badge::before {
  content: '\f3c5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.875rem;
  color: #ef4444;
}

/* ===== PRICE BADGE ===== */
.villa-card__price-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
}

.villa-card__price-badge .villa-card__price-label {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.villa-card__price-badge .villa-card__price {
  color: #0f172a;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  line-height: 1;
}

/* ===== PRICE OPTIONS ===== */
.villa-card__price-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.villa-card__price-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(100, 116, 139, 0.1);
}

.villa-card__price-option:last-child {
  border-bottom: none;
}

.villa-card__price-type {
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.villa-card__price-option .villa-card__price {
  color: #0f172a;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.3px;
  line-height: 1;
}

/* ===== RATING ===== */
.villa-card__rating {
  position: absolute;
  top: 20px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.6rem;
  color: #0f172a;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.villa-card__rating i {
  color: #fbbf24;
  font-size: 0.875rem;
}

/* ===== CARD CONTENT ===== */
.villa-card__content {
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-top: -24px;
  border-radius: 0 0 28px 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}


.villa-card__name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.villa-card__desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ===== HOTEL SECTION ===== */
.villa-card__hotel-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.villa-card__hotel-header {
  margin-bottom: 12px;
}

.villa-card__hotel-label {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.villa-card__price-note {
  color: #f59e0b;
  font-size: 0.75rem;
  font-weight: 600;
  font-style: italic;
  margin-left: 8px;
}

.villa-card__hotel-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.villa-card__hotel-details {
  flex: 1;
}

.villa-card__hotel-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.2;
}

.villa-card__hotel-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.villa-card__hotel-stars i {
  color: #fbbf24;
  font-size: 0.875rem;
}

.villa-card__hotel-star-text {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 6px;
}

.villa-card__hotel-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.villa-card__hotel-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  background: transparent;
  border: none;
  text-align: left;
  min-width: 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.villa-card__hotel-price-item:last-child {
  border-bottom: none;
}

.villa-card__hotel-price-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.villa-card__hotel-price-info i {
  color: #3b82f6;
  font-size: 0.8rem;
}

.villa-card__hotel-price-type {
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.villa-card__hotel-price {
  color: #0f172a;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.3px;
}

.villa-card__hotel-price-per-person {
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 500;
  font-style: italic;
}

.villa-card__hotel-price-item--single {
  flex-direction: row;
  justify-content: space-between;
}

.villa-card__hotel-price-item--single .villa-card__hotel-price-info {
  flex-direction: row;
  gap: 8px;
}

.villa-card__hotel-prices--single {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 6px;
  width: 100%;
}

/* ===== META INFORMATION ===== */
.villa-card__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  flex: 1;
}

.villa-card__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: #1e293b;
  font-weight: 600;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.villa-card__meta-item i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border-radius: 6px;
  padding: 4px;
  color: black;
}

.villa-card__badges-mobile {
  display: none;
  margin-bottom: 8px;
  gap: 6px;
  flex-wrap: wrap;
}

.villa-card__badge-mobile {
  display: inline-block;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 4px 10px;
  margin-right: 4px;
  margin-bottom: 4px;
}

/* ===== VILLA CATEGORIES ===== */
.villa-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
}

.villa-card__category-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.villa-card__category-item:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.villa-card__category-item i {
  font-size: 9px;
  opacity: 0.9;
}

.villa-card__category-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background: rgba(100, 116, 139, 0.1);
  color: #64748b;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(100, 116, 139, 0.2);
}

/* ===== VILLA PRICING SECTION ===== */
.villa-card__pricing-section {
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.villa-card__pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.villa-card__pricing-label {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.villa-card__pricing-note {
  color: #f59e0b;
  font-size: 0.75rem;
  font-weight: 600;
  font-style: italic;
}

.villa-card__pricing-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.villa-card__pricing-prices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.villa-card__price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.villa-card__price-item:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.villa-card__price-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.villa-card__price-info i {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 4px;
}

.villa-card__price-type {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.villa-card__price {
  color: #0f172a;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.2px;
}

.villa-card__price--free {
  color: #10b981;
  font-weight: 600;
  font-size: 0.75rem;
}

/* ===== RESPONSIVE DESIGN ===== */
/* ===== CATEGORIES RESPONSIVE ===== */
@media (max-width: 1400px) {
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 6px;
  }
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 5px;
  }
  
  .categories-section__container {
    padding: 0 var(--spacing-md);
  }
  
  .category-card {
    height: 260px;
  }
}

@media (max-width: 992px) {
  .categories-section {
    padding: 60px 0;
  }
  
  .categories-section__title {
    font-size: 2rem;
  }
  
  .categories-section__subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .category-card__content {
    padding: 20px;
  }
  
  .category-card__name {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .categories-grid,
  .categories-grid[data-count="1"],
  .categories-grid[data-count="2"],
  .categories-grid[data-count="3"],
  .categories-grid[data-count="4"],
  .categories-grid:not([data-count]) {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
    margin: 0 !important;
    gap: 8px;
  }
  
  .categories-section__container {
    padding: 0 var(--spacing-sm);
  }
  
  .categories-section__title {
    font-size: 1.75rem;
  }
  
  .category-card {
    height: 240px;
  }
  
  .villa-card__badges-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
  }
  
  .villa-card__badge,
  .villa-card__location-badge,
  .villa-card__transport-badge,
  .villa-card__accommodation-badge,
  .villa-card__rating {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .categories-section {
    padding: 40px 0;
  }
  
  .categories-section__title {
    font-size: 1.5rem;
  }
  
  .categories-section__subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  
  .categories-grid,
  .categories-grid[data-count="1"],
  .categories-grid[data-count="2"],
  .categories-grid[data-count="3"],
  .categories-grid[data-count="4"],
  .categories-grid:not([data-count]) {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
    margin: 0 !important;
    gap: 6px;
  }
  
  .category-card {
    height: 220px;
  }
  
  .category-card__content {
    padding: 16px;
  }
  
  .category-card__name {
    font-size: 1rem;
  }
}

/* ===== TOURS RESPONSIVE ===== */
@media (max-width: 1400px) {
  .tours-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

@media (max-width: 1200px) {
  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
  
  .tours-section__container {
    padding: 0 24px;
  }
  
  .villa-card {
    height: fit-content;
  }
  
  .villa-card__image-wrapper {
    height: 240px;
  }
}

@media (max-width: 992px) {
  .tours-section {
    padding: 80px 0 100px 0;
  }
  
  .villa-card__content {
    padding: 18px 18px 18px 18px;
    margin-top: -20px;
  }
  
  .villa-card__meta {
    gap: 12px;
  }
  
  .villa-card__hotel-info {
    flex-direction: column;
    gap: 16px;
  }
  
  .villa-card__hotel-prices {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 450px;
  }
  
  .tours-section__container {
    padding: 0 20px;
  }
  
  .tours-section {
    padding: 20px 0 80px 0;
  }
  
  .villa-card {
    height: fit-content;
  }
  
  .villa-card__image-wrapper {
    height: 200px;
  }
  
  .villa-card__content {
    padding: 16px 16px 16px 16px;
    margin-top: -16px;
  }
  
  .villa-card__name {
    font-size: 1.35rem;
  }
  
  .villa-card__desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .tours-section__title {
    font-size: 2rem;
  }
  
  .villa-card {
    height: fit-content;
    border-radius: 20px;
  }
  
  .villa-card__image-wrapper {
    height: 180px;
    border-radius: 20px 20px 0 0;
  }
  
  .villa-card__content {
    padding: 14px 12px 12px 12px;
    margin-top: -12px;
    border-radius: 0 0 20px 20px;
  }
  
  .villa-card__name {
    font-size: 1.25rem;
  }
  
  .villa-card__meta {
    gap: 10px;
  }
  
  .villa-card__meta-item {
    font-size: 0.85rem;
  }
  
  .villa-card__hotel-name {
    font-size: 1rem;
  }
  
  .villa-card__hotel-price {
    font-size: 0.85rem;
  }
  
  .villa-card__price-badge {
    min-width: 120px;
  }
  
  .villa-card__price-option .villa-card__price {
    font-size: 0.9rem;
  }
  
  .villa-card__price-type {
    font-size: 0.65rem;
  }
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #cbd5e1 50%, transparent 100%);
}

.blog-section__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.blog-section__title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.blog-section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}

.blog-section__subtitle {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #64748b;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
  height: fit-content;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.blog-card__image-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.05);
}

.blog-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card__overlay {
  opacity: 0.7;
}

.blog-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-card__category {
  background: rgba(59, 130, 246, 0.95);
  color: #fff;
}

.blog-card__date {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.blog-card__content {
  padding: 20px;
  position: relative;
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card__title {
  color: #3b82f6;
}

.blog-card__excerpt {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: #94a3b8;
  padding: 12px 0;
  border-top: 1px solid #f1f5f9;
}

.blog-card__author,
.blog-card__read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.blog-card__author i,
.blog-card__read-time i {
  color: #3b82f6;
  font-size: 0.75rem;
}

.blog-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  padding: 10px 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  gap: 8px;
}

.blog-card__link:hover {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: #3b82f6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.blog-card__link i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.blog-card__link:hover i {
  transform: translateX(3px);
}

/* ===== BLOG RESPONSIVE ===== */
@media (max-width: 1400px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .blog-section__container {
    padding: 0 var(--spacing-md);
  }
}

@media (max-width: 992px) {
  .blog-section {
    padding: 60px 0;
  }
  
  .blog-section__title {
    font-size: 2rem;
  }
  
  .blog-section__subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .blog-card__content {
    padding: 20px;
  }
  
  .blog-card__title {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 80px 0;
  }
  
  .blog-section__title {
    font-size: 2.5rem;
  }
  
  .blog-section__subtitle {
    font-size: 1.1rem;
    margin-bottom: 60px;
  }
  
  .blog-section__subtitle::before,
  .blog-section__subtitle::after {
    display: none;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .blog-card__content {
    padding: 24px;
  }
  
  .blog-card__title {
    font-size: 1.25rem;
  }
  
  .blog-card__image-wrapper {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 40px 0;
  }
  
  .blog-section__title {
    font-size: 1.5rem;
  }
  
  .blog-section__subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .blog-card__image-wrapper {
    height: 180px;
  }
  
  .blog-card__content {
    padding: 16px;
  }
  
  .blog-card__title {
    font-size: 1rem;
  }
  
  .blog-card__excerpt {
    font-size: 0.875rem;
  }
  
  .blog-card__meta {
    font-size: 0.8rem;
  }
  
  .blog-card__link {
    font-size: 0.85rem;
    padding: 10px 14px;
  }
}

/* ===== NO PRICE DESIGN ===== */
.villa-card__no-price {
  position: relative;
  background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.villa-card__no-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.villa-card__no-price:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.villa-card__no-price:hover::before {
  opacity: 1;
}

.villa-card__no-price-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.villa-card__no-price-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
  position: relative;
  overflow: hidden;
}

.villa-card__no-price-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
}

.villa-card__no-price-icon i {
  font-size: 16px;
  color: white;
  position: relative;
  z-index: 1;
}

.villa-card__no-price-content {
  flex: 1;
}

.villa-card__no-price-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.villa-card__no-price-text {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.villa-card__no-price-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.villa-card__no-price-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

.villa-card__no-price-info i {
  color: #3b82f6;
  font-size: 12px;
}

.villa-card__no-price-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
  position: relative;
  overflow: hidden;
}

.villa-card__no-price-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.villa-card__no-price-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
  color: white;
  text-decoration: none;
}

.villa-card__no-price-btn:hover::before {
  left: 100%;
}

.villa-card__no-price-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.villa-card__no-price-btn:hover i {
  transform: translateX(2px);
}

/* Responsive Design for No Price */
@media (max-width: 1200px) {
  .villa-card__no-price {
    padding: 14px;
  }
  
  .villa-card__no-price-header {
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .villa-card__no-price-icon {
    width: 36px;
    height: 36px;
  }
  
  .villa-card__no-price-icon i {
    font-size: 14px;
  }
  
  .villa-card__no-price-title {
    font-size: 0.95rem;
  }
  
  .villa-card__no-price-text {
    font-size: 0.75rem;
  }
  
  .villa-card__no-price-actions {
    margin-top: 10px;
    padding-top: 10px;
  }
  
  .villa-card__no-price-btn {
    padding: 7px 14px;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .villa-card__no-price {
    padding: 12px;
    border-radius: 12px;
  }
  
  .villa-card__no-price-header {
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .villa-card__no-price-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  
  .villa-card__no-price-icon i {
    font-size: 12px;
  }
  
  .villa-card__no-price-title {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }
  
  .villa-card__no-price-text {
    font-size: 0.7rem;
  }
  
  .villa-card__no-price-actions {
    margin-top: 8px;
    padding-top: 8px;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  
  .villa-card__no-price-info {
    justify-content: center;
    font-size: 0.7rem;
  }
  
  .villa-card__no-price-btn {
    padding: 8px 12px;
    font-size: 0.75rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .villa-card__no-price {
    padding: 10px;
    border-radius: 10px;
  }
  
  .villa-card__no-price-header {
    gap: 6px;
    margin-bottom: 6px;
  }
  
  .villa-card__no-price-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }
  
  .villa-card__no-price-icon i {
    font-size: 10px;
  }
  
  .villa-card__no-price-title {
    font-size: 0.85rem;
    margin-bottom: 1px;
  }
  
  .villa-card__no-price-text {
    font-size: 0.65rem;
  }
  
  .villa-card__no-price-actions {
    margin-top: 6px;
    padding-top: 6px;
    gap: 6px;
  }
  
  .villa-card__no-price-info {
    font-size: 0.65rem;
  }
  
  .villa-card__no-price-btn {
    padding: 6px 10px;
    font-size: 0.7rem;
  }
}
