/**
 * Province (İller Rehberi) Sayfaları CSS
 * Archive ve Single Province sayfaları için
 */

/* ============================================
   ARCHIVE - İLLER LİSTESİ
   ============================================ */
.provinces-archive-content {
  padding: 60px 0;
  background: #fff;
}

.archive-intro {
  text-align: center;
  margin-bottom: 50px;
}

.archive-intro .intro-text {
  font-size: 1.1rem;
  color: #111111;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.provinces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.province-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.province-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.province-card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
}

.province-card-link:hover {
  text-decoration: none !important;
}

.province-card-link:hover .province-title,
.province-card-link:hover .province-excerpt,
.province-card-link:hover .view-link {
  text-decoration: none !important;
}

.province-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.province-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.province-card:hover .province-card-image img {
  transform: scale(1.1);
}

.province-card-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}

.province-card-content {
  padding: 25px;
}

.province-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.province-excerpt {
  color: #111111;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.province-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
}

.province-card-footer .view-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.province-card:hover .view-link {
  color: var(--primary-dark);
}

.no-provinces-found {
  text-align: center;
  padding: 80px 20px;
  background: var(--bg-gray);
  border-radius: var(--radius-lg);
}

.no-provinces-found i {
  font-size: 4rem;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.no-provinces-found h3 {
  font-size: 1.5rem;
  color: #111111;
  margin-bottom: 10px;
}

.no-provinces-found p {
  color: #111111;
}

/* ============================================
   SINGLE - İL DETAY SAYFASI
   ============================================ */
.province-hero-image {
  padding: 30px 0;
  background: #f8fafc;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
}

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

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

.hero-overlay h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.province-detail-wrapper {
  padding: 60px 0 80px;
  background: #fff;
}

.province-detail-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

/* Sol: Ana İçerik */
.province-main-content {
  min-width: 0;
}

.province-article {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #111111;
}

.province-article h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111111;
  margin: 30px 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.province-article h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111111;
  margin: 25px 0 12px;
}

.province-article p {
  margin-bottom: 15px;
}

.province-article ul {
  margin: 15px 0;
  padding-left: 25px;
}

.province-article ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.province-article strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Önerilen Turlar Slider */
.province-tours-section {
  margin-top: 60px;
  padding: 40px;
  background: #f8fafc;
  border-radius: var(--radius-xl);
}

.province-tours-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.province-tours-section .section-title i {
  color: var(--primary-color);
}

.province-tours-slider {
  position: relative;
}

.province-tour-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.province-tour-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.province-tour-card .tour-image {
  height: 200px;
  overflow: hidden;
}

.province-tour-card .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.province-tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.province-tour-card .tour-content {
  padding: 20px;
}

.province-tour-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.province-tour-card h4 a {
  color: #111111;
  text-decoration: none;
}

.province-tour-card h4 a:hover {
  color: var(--primary-color);
}

.province-tour-card .tour-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
}

.province-tour-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.province-tour-card .view-btn {
  padding: 8px 20px;
  background: var(--primary-color);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.province-tour-card .view-btn:hover {
  background: var(--primary-dark);
}

.province-tours-slider .swiper-button-prev,
.province-tours-slider .swiper-button-next {
  color: var(--primary-color);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.province-tours-slider .swiper-button-prev:after,
.province-tours-slider .swiper-button-next:after {
  font-size: 18px;
}

.province-tours-slider .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Sağ: Sidebar */
.province-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.sidebar-widget .widget-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

.sidebar-widget .widget-title i {
  color: var(--primary-color);
}

/* İletişim Widget - Beyaz Arka Plan */
.sidebar-widget.contact-widget {
  background: #fff !important;
  color: #1a365d !important;
}

.sidebar-widget.contact-widget .widget-title {
  color: #1a365d !important;
  border-color: #e2e8f0 !important;
}

.sidebar-widget.contact-widget .widget-title i {
  color: #1ca8cb !important;
}

.sidebar-widget.contact-widget .widget-desc {
  color: #64748b !important;
}

.contact-widget .contact-info {
  margin-bottom: 20px;
}

.contact-widget .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #f8fafc;
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.contact-widget .contact-item i {
  font-size: 1.3rem;
  color: #1ca8cb !important;
  margin-top: 3px;
}

.contact-widget .contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: #64748b !important;
  margin-bottom: 3px;
}

.contact-widget .contact-item a,
.contact-widget .contact-item span {
  color: #1a365d !important;
  text-decoration: none;
  font-weight: 500;
}

.contact-widget .contact-item a:hover {
  color: #1ca8cb !important;
}

.sidebar-widget.contact-widget .widget-phone,
.sidebar-widget.contact-widget .widget-email {
  background: #f1f5f9 !important;
  color: #1a365d !important;
}

.sidebar-widget.contact-widget .widget-phone i,
.sidebar-widget.contact-widget .widget-email i {
  color: #1ca8cb !important;
}

.contact-widget .contact-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-widget .contact-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-widget .contact-btn i {
  margin-right: 8px;
}

/* Diğer İller Widget */
.other-provinces-widget .provinces-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.other-provinces-widget .provinces-list li {
  margin-bottom: 10px;
}

.other-provinces-widget .provinces-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #f8fafc;
  border-radius: var(--radius);
  color: #111111;
  text-decoration: none;
  transition: all 0.3s ease;
}

.other-provinces-widget .provinces-list a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateX(5px);
}

.other-provinces-widget .provinces-list i {
  font-size: 0.8rem;
  color: var(--primary-color);
}

.other-provinces-widget .provinces-list a:hover i {
  color: #fff;
}

.other-provinces-widget .view-all-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #f8fafc;
  color: var(--primary-color);
  text-align: center;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.other-provinces-widget .view-all-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.other-provinces-widget .view-all-btn i {
  margin-left: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .province-detail-container {
    grid-template-columns: 1fr;
  }
  
  .province-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .provinces-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-image-wrapper {
    height: 250px;
  }
  
  .hero-overlay h2 {
    font-size: 1.8rem;
  }
  
  .province-tours-section {
    padding: 25px;
  }
  
  .province-tours-section .section-title {
    font-size: 1.4rem;
  }
}

