
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1e40af;
  --secondary: #f59e0b;
  --accent: #10b981;
  --dark: #1f2937;
  --light: #f3f4f6;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Transparent Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(30, 64, 175, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.logo i {
  font-size: 28px;
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("image/kover.jpg")
    center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}
.logo-image {
    width: 150px;
    height: 50px;
}
.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-item i {
  font-size: 36px;
  color: var(--secondary);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 15px;
  position: relative;
}

.mouse::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-description {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* UNESCO Section */
.unesco {
  background: var(--light);
}

.unesco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.unesco-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.unesco-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.unesco-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.unesco-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.unesco-card:hover .unesco-image img {
  transform: scale(1.1);
}

.unesco-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.unesco-content {
  padding: 30px;
}

.unesco-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark);
}

.unesco-content p {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.8;
}

.unesco-features {
  list-style: none;
  margin-bottom: 20px;
}

.unesco-features li {
  padding: 8px 0;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 10px;
}

.unesco-features i {
  color: var(--accent);
}

.unesco-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.unesco-link:hover {
  gap: 15px;
}

/* Samarkand Showcase */
.landmarks-showcase {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: start;
}

.showcase-main {
  position: sticky;
  top: 100px;
}

.showcase-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 600px;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
}

.image-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.showcase-item:hover,
.showcase-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
  transform: translateX(10px);
}

.item-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  flex-shrink: 0;
}

.item-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--dark);
}

.item-content p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.item-year {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Bukhara Grid */
.bukhara {
  background: var(--light);
}

.bukhara-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.bukhara-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bukhara-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.bukhara-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.bukhara-card.large .card-image {
  height: 100%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bukhara-card:hover .card-image img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(245, 158, 11, 0.9);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}

.card-content p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #9ca3af;
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Khiva Timeline */
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.timeline-item.reverse {
  direction: rtl;
}

.timeline-item.reverse > * {
  direction: ltr;
}

.timeline-content {
  position: relative;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  margin-bottom: 20px;
}

.timeline-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--dark);
}

.timeline-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 15px;
}

.timeline-year {
  display: inline-block;
  padding: 8px 20px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 20px;
  font-weight: 600;
}

.timeline-image {
  border-radius: 15px;
  overflow: hidden;
  height: 350px;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.timeline-item:hover .timeline-image img {
  transform: scale(1.05);
}

/* Tashkent Slider */
.tashkent {
  background: var(--light);
}

.tashkent-slider {
  position: relative;
}

.slider-container {
  overflow: hidden;
  border-radius: 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: var(--white);
  padding: 40px;
  align-items: center;
}

.slider-image {
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--dark);
}

.slider-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 25px;
}

.slider-features {
  list-style: none;
}

.slider-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4b5563;
}

.slider-features i {
  color: var(--accent);
  font-size: 18px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border: none;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.slider-btn:hover {
  background: var(--secondary);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}

/* Nature Grid */
.nature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.nature-card {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 350px;
}

.nature-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
}

.nature-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.nature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nature-card:hover .nature-image img {
  transform: scale(1.1);
}

.nature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nature-card:hover .nature-overlay {
  opacity: 1;
}

.nature-info {
  color: var(--white);
}

.nature-card:not(.featured) .nature-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.nature-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.nature-info p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.nature-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nature-tags span {
  padding: 6px 15px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Religious Masonry */
.religious {
  background: var(--light);
}

.religious-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.masonry-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.masonry-item.tall {
  grid-row: span 2;
}

.masonry-item.wide {
  grid-column: span 2;
}

.masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.masonry-image {
  height: 250px;
  overflow: hidden;
}

.masonry-item.tall .masonry-image {
  height: 350px;
}

.masonry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.masonry-item:hover .masonry-image img {
  transform: scale(1.1);
}

.masonry-content {
  padding: 25px;
}

.masonry-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  margin-bottom: 20px;
}

.masonry-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

.masonry-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 15px;
}

.masonry-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #9ca3af;
}

.masonry-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Museums Carousel */
.museums-carousel {
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.museum-card {
  min-width: calc(33.333% - 20px);
  margin: 0 10px;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.museum-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.museum-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.museum-card:hover .museum-image img {
  transform: scale(1.1);
}

.museum-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 20px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.museum-content {
  padding: 25px;
}

.museum-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark);
}

.museum-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.museum-highlights {
  list-style: none;
  margin-bottom: 20px;
}

.museum-highlights li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 14px;
}

.museum-highlights i {
  color: var(--accent);
}

.museum-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;
  color: #9ca3af;
}

.museum-footer span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 10;
}

.carousel-btn.prev {
  left: -25px;
}

.carousel-btn.next {
  right: -25px;
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}

/* Interactive Map */
.interactive-map {
  background: var(--light);
}

.map-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
  border-radius: 15px;
  overflow: hidden;
  background: #f9fafb;
}

.uzbekistan-map {
  width: 100%;
  height: auto;
}

.region {
  cursor: pointer;
  transition: all 0.3s ease;
}

.region:hover {
  opacity: 0.6 !important;
  filter: brightness(1.2);
}

.marker {
  cursor: pointer;
  transition: all 0.3s ease;
}

.marker:hover {
  r: 12;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.8));
}

.map-label {
  font-size: 14px;
  font-weight: 600;
  fill: #1f2937;
  pointer-events: none;
}

.map-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-content {
  text-align: center;
}

.info-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--dark);
}

.info-content p {
  color: #6b7280;
  line-height: 1.8;
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
}

.legend-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.legend-marker.major {
  background: #f59e0b;
}

.legend-marker.minor {
  background: #10b981;
}

.legend-marker.unesco {
  background: #1e40af;
}

/* Virtual Tours Gallery */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 30px;
  border: 2px solid #e5e7eb;
  background: var(--white);
  color: #6b7280;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 5px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 15px;
}

.view-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.1);
}

/* Visitor Info */
.visitor-info {
  background: var(--light);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.info-card {
  background: var(--white);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  margin-bottom: 25px;
}

.info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--dark);
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}

.info-label {
  color: #6b7280;
  font-size: 14px;
}

.info-value {
  color: var(--dark);
  font-weight: 600;
}

.info-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(30, 64, 175, 0.05);
  border-radius: 8px;
  color: var(--primary);
  font-size: 13px;
  margin-top: 10px;
}

.info-tips {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-tips h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-tips h3 i {
  color: var(--secondary);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--light);
  border-radius: 10px;
}

.tip-item i {
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tip-item p {
  color: #4b5563;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: var(--light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--dark);
}

.contact-info > p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.contact-text p {
  color: #6b7280;
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

/* Enhanced Footer */
.footer {
  background: #1f2937;
  color: var(--white);
}

.footer-main {
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.footer-logo i {
  font-size: 32px;
  color: var(--secondary);
}

.footer-desc {
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-links i {
  font-size: 10px;
}

.footer-contacts {
  list-style: none;
}

.footer-contacts li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: #9ca3af;
}

.footer-contacts i {
  color: var(--secondary);
  margin-top: 3px;
}

.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-partners {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-partners h4 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 25px;
  color: #9ca3af;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 600;
}

.partner-logo i {
  font-size: 24px;
  color: var(--secondary);
}

.footer-bottom {
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
}

.lightbox-info {
  text-align: center;
  color: var(--white);
  margin-top: 20px;
}

.lightbox-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: var(--white);
  color: var(--dark);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-nav:hover {
  background: var(--white);
  color: var(--dark);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

/* AOS Animations */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .landmarks-showcase,
  .map-container,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .showcase-main {
    position: relative;
    top: 0;
  }

  .bukhara-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item.reverse {
    direction: ltr;
  }

  .slider-card {
    grid-template-columns: 1fr;
  }

  .nature-grid,
  .religious-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .section-title {
    font-size: 26px;
  }

  .nav-menu {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 100%;
    height: 90vh;
    background: var(--primary);
    flex-direction: column;
    padding: 80px 30px;
    transition: right 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .burger {
    display: flex;
    z-index: 1001;
  }

  .unesco-grid,
  .bukhara-grid,
  .nature-grid,
  .religious-masonry,
  .gallery-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .bukhara-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .masonry-item.tall,
  .masonry-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .museum-card {
    min-width: 100%;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .hero-stats {
    display: none;
  }
  .hero-title {
    font-size: 28px;
    padding: 0px 20px;
  }
  .hero-subtitle {
    font-size: 14px;
    padding: 0px 20px;
  }
.contact-info h2 {
    font-size: 24px;
  }
  section {
   overflow: hidden;
  }
 
}
