/* JUTH.UZ - Asosiy CSS fayl */

:root {
  --primary-color: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --secondary-color: #ef4444;
  --secondary-dark: #dc2626;
  --accent-color: #f59e0b;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --bg-color: #ffffff;
  --bg-light: #f0fdf4;
  --border-color: #d1fae5;
  --success-color: #10b981;
  --error-color: #ef4444;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.main-header {
  background: var(--bg-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.header-nav-row .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  padding: 15px 20px;
}

.header-nav-row .logo {
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
  padding: 15px 30px;
  border-radius: 0 0 0 30px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.header-right::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.header-phones {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.header-phones .contact-item {
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.header-phones .contact-item i {
  color: #ffffff;
}

.header-phones .contact-item a {
  color: #ffffff;
}

.header-phones .contact-item a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.header-language {
  display: flex;
  align-items: center;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.language-selector-wrapper {
  position: relative;
}

.language-current {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.3s;
}

.language-current:hover {
  background: rgba(255, 255, 255, 0.1);
}

.language-flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.language-text {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}

.language-current i {
  color: #ffffff;
  font-size: 12px;
  transition: transform 0.3s;
}

.language-selector-wrapper.active .language-current i {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
}

.language-selector-wrapper.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.3s;
  color: var(--text-color);
}

.language-option:first-child {
  border-radius: 8px 8px 0 0;
}

.language-option:last-child {
  border-radius: 0 0 8px 8px;
}

.language-option:hover {
  background: var(--bg-light);
}

.language-option.active {
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary-color);
  font-weight: 600;
}

.language-option .language-flag {
  width: 24px;
  height: 18px;
}

.language-selector {
  padding: 6px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
}

.language-selector:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.language-selector:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.logo a {
  text-decoration: none;
  color: var(--text-color);
  display: inline-block;
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
}

.header-contact {
  display: flex;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.contact-item i {
  color: var(--primary-color);
}

.contact-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.main-nav {
  position: relative;
  flex: 1;
  padding: 0;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
  color: #ffffff;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 56px;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-title-main {
  color: #ffffff;
  font-size: 64px;
  letter-spacing: 2px;
}

.hero-title-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 48px;
  font-weight: 300;
}

.hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
}

.hero-services {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s;
  min-width: 150px;
}

.hero-service-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.hero-service-item i {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 5px;
}

.hero-service-item span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.hero-btn-primary {
  background: #ffffff;
  color: var(--primary-color);
}

.hero-btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Services Overview Section */
.services-overview {
  padding: 100px 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 36px;
  color: #ffffff;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.service-card > p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-color);
  font-size: 15px;
}

.service-features li i {
  color: var(--primary-color);
  font-size: 14px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 12px;
}

.service-link i {
  transition: transform 0.3s;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Hero decorations */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.green-curve {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary-color) 100%
  );
  border-radius: 50% 0 0 50%;
  opacity: 0.3;
  transform: rotate(-15deg);
}

.fruits-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
}

.fruit {
  position: absolute;
  width: 80px;
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
}

.fruit-grapes {
  top: 10%;
  right: 15%;
  width: 100px;
  height: 100px;
}
.fruit-lemon {
  top: 20%;
  right: 25%;
  width: 60px;
  height: 60px;
}
.fruit-cherry {
  top: 30%;
  right: 10%;
  width: 50px;
  height: 50px;
}
.fruit-apricot {
  bottom: 20%;
  right: 20%;
  width: 70px;
  height: 70px;
}
.fruit-peach {
  bottom: 15%;
  right: 30%;
  width: 80px;
  height: 80px;
}
.fruit-melon {
  bottom: 10%;
  right: 5%;
  width: 120px;
  height: 120px;
}
.fruit-pear {
  bottom: 25%;
  left: 10%;
  width: 60px;
  height: 60px;
}
.fruit-nuts {
  bottom: 15%;
  left: 5%;
  width: 90px;
  height: 90px;
}

.airplanes-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
}

.airplane {
  position: absolute;
  width: 60px;
  height: 40px;
  background: white;
  border-radius: 50% 0 0 50%;
  opacity: 0.8;
}

.airplane::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--primary-color) 0px,
    var(--primary-color) 10px,
    transparent 10px,
    transparent 20px
  );
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}

.airplane-1 {
  top: 15%;
  right: 20%;
}

.airplane-2 {
  top: 8%;
  right: 35%;
}

.leaves-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
}

.leaves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--primary-light);
  border-radius: 50% 0;
  opacity: 0.2;
}

.leaves-top-left {
  top: -50px;
  left: -50px;
  transform: rotate(-45deg);
}

.leaves-bottom-left {
  bottom: -50px;
  left: -50px;
  transform: rotate(45deg);
}

.leaves-bottom-right {
  bottom: -50px;
  right: -50px;
  transform: rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

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

.btn-secondary {
  background: white;
  color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

/* Sections */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.page-header {
  background: var(--bg-light);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-light);
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* News Section */
.news-section {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.news-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.news-content {
  padding: 20px;
}

.news-content h3 {
  margin-bottom: 10px;
}

.news-content h3 a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.news-content h3 a:hover {
  color: var(--primary-color);
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  font-size: 14px;
  color: var(--text-light);
}

.news-meta i {
  margin-right: 5px;
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: var(--primary-color);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
}

/* Forms */
.admission-form-section,
.contact-section {
  padding: 60px 0;
}

.form-section {
  margin-bottom: 40px;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.form-section h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-group .required {
  color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group small {
  display: block;
  margin-top: 5px;
  color: var(--text-light);
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

/* Submit Button - Yaxshilangan dizayn */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.submit-btn span {
  position: relative;
  z-index: 1;
}

.submit-btn i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-btn:disabled:hover {
  transform: none;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

/* Alerts */
.alert {
  padding: 15px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid var(--success-color);
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid var(--error-color);
}

/* About Section */
.about-section {
  padding: 60px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-text h3 {
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-text ul {
  margin-top: 15px;
  padding-left: 20px;
}

.about-text ul li {
  margin-bottom: 10px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

/* Timeline */
.history-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-year {
  min-width: 100px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Specialties */
.specialties-section {
  padding: 60px 0;
}

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

.specialty-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.specialty-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
}

.specialty-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.specialty-card ul {
  margin-top: 15px;
  padding-left: 20px;
}

.specialty-card ul li {
  margin-bottom: 8px;
  color: var(--text-light);
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.contact-item i {
  font-size: 24px;
  color: var(--primary-color);
  min-width: 30px;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.contact-form-wrapper {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

/* News Detail */
.news-detail-section {
  padding: 60px 0;
}

.news-detail {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.news-detail-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.news-detail-image img {
  width: 100%;
  height: auto;
}

.news-detail-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-color);
}

.news-detail-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.pagination-link {
  padding: 10px 15px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s;
}

.pagination-link:hover,
.pagination-link.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Footer */
.main-footer {
  background: var(--primary-color);
  color: white;
  padding: 0;
  margin-top: 80px;
  position: relative;
}

.footer-top-line {
  height: 2px;
  background: white;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr 1.2fr;
  gap: 40px;
  padding: 60px 20px 40px;
  align-items: start;
}

/* Footer Logo Section */
.footer-logo-section {
  display: flex;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-image {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Footer Address Section */
.footer-address-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
  text-transform: uppercase;
}

.footer-address-section p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

/* Footer Social Section */
.footer-social-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Footer Contact Section */
.footer-contact-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
  text-transform: uppercase;
}

.footer-email-section {
  margin-bottom: 10px;
}

.footer-email {
  font-size: 14px;
  color: white;
  text-decoration: underline;
  transition: opacity 0.3s;
  display: block;
}

.footer-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-phone {
  font-size: 14px;
  color: white;
  text-decoration: underline;
  transition: opacity 0.3s;
  display: block;
}

.footer-phone:hover,
.footer-email:hover {
  opacity: 0.8;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  margin: 20px 0;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-copyright p {
  margin: 0;
  font-weight: 500;
}

.text-center {
  text-align: center;
}

.no-content {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.service-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 24px;
}

/* Products Section */
.products-section {
  padding: 80px 0;
}

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

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
  width: 100%;
  height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.product-placeholder {
  color: var(--text-light);
  font-size: 48px;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.product-price {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 18px;
  margin: 10px 0;
}

/* Tourism Section */
.tourism-section {
  padding: 60px 0;
}

.tourism-layout {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.tourism-column {
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.tourism-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.airplane-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.airplane-icon.large-icon {
  width: 150px;
  height: 150px;
  background: transparent;
  border-radius: 0;
  padding: 10px;
}

.airplane-icon.large-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vertical-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.service-icon-small {
  width: 70px;
  height: 70px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
  padding: 10px;
  overflow: visible;
}

.service-icon-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tourism-service-image {
  margin-top: 30px;
  text-align: center;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.tourism-service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.tourism-service-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-content h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.tourism-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tourism-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: transparent;
  position: relative;
  overflow: visible;
}

.circle-content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-content img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 0 transparent);
}

/* SVG fon rangini olib tashlash */
.tourism-circle .circle-content img[src*="unitur001.svg"] {
  background: transparent !important;
  background-color: transparent !important;
}

.circle-left,
.circle-right {
  position: absolute;
  width: 50%;
  height: 100%;
}

.circle-left {
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 100%
  );
}

.circle-right {
  right: 0;
  background: linear-gradient(
    225deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 100%
  );
}

.building {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
}

.building-modern {
  width: 40px;
  height: 80px;
  top: 20%;
  left: 20%;
}

.building-minaret {
  width: 30px;
  height: 100px;
  top: 10%;
  left: 40%;
}

.building-arch {
  width: 60px;
  height: 50px;
  bottom: 30%;
  left: 10%;
}

.building-pagoda {
  width: 50px;
  height: 90px;
  top: 15%;
  right: 20%;
}

.building-pagoda-2 {
  width: 45px;
  height: 70px;
  bottom: 25%;
  right: 35%;
}

.tourism-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.form-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.tourism-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* Consulting Section */
.consulting-section {
  padding: 60px 0;
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.consulting-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.consulting-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

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

.consulting-icon {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.consulting-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.consulting-illustration {
  width: 100%;
  height: 200px;
  background: var(--bg-light);
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.consulting-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.illustration-placeholder {
  color: var(--text-light);
  font-size: 64px;
}

.consulting-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 22px;
}

.consulting-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.consulting-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* Export Section */
.export-section {
  padding: 60px 0;
}

.category-filters {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 25px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 32px;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--text-color);
}

.export-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* Export Intro Section */
.export-intro-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.export-intro-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.export-text {
  z-index: 2;
}

.section-title-left {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 700;
  text-align: left;
}

.export-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-color);
}

.export-images {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
}

.export-image {
  flex: 1;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 48px;
}

.melon-image {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.grapes-image {
  background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
}

.export-cta {
  text-align: center;
}

/* Tourism Intro Section */
.tourism-intro-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.tourism-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.tourism-intro-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.tourism-intro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.tourism-intro-header h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin: 0;
}

.tourism-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.tourism-services-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tourism-service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: 10px;
  transition: background 0.3s;
}

.tourism-service-item:hover {
  background: var(--border-color);
}

.tourism-service-item i {
  color: var(--primary-color);
  font-size: 20px;
  width: 30px;
}

.tourism-service-item span {
  color: var(--text-color);
  font-size: 16px;
}

.tourism-cta {
  text-align: center;
}

/* Consulting Intro Section */
.consulting-intro-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.consulting-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.consulting-intro-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.consulting-intro-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.consulting-icon-large {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
}

.consulting-intro-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.consulting-cta {
  text-align: center;
}

/* Contact Intro Section */
.contact-intro-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-intro-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-intro-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.contact-intro-form .form-group {
  margin-bottom: 25px;
}

.contact-intro-form .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-intro-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.contact-intro-form input,
.contact-intro-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-intro-form input:focus,
.contact-intro-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-intro-form .btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 18px;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.map-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrapper a {
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.map-wrapper a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.map-container {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-section .map-container {
  height: 450px;
}

.map-info {
  background: white;
  padding: 25px;
  border-radius: 0 0 15px 15px;
  text-align: center;
}

.map-info h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 24px;
}

.map-info p {
  color: var(--text-light);
  font-size: 16px;
  margin: 0;
}

/* Why Us Section */
.why-us-section {
  padding: 80px 0;
  background: var(--bg-light);
}

/* Import/Export Section */
.import-export {
  padding: 80px 0;
  background: var(--bg-color);
}

.import-export .container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.import-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.import-image > img {
  flex: 1;
  min-width: 200px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.fruit-float {
  position: relative;
  flex: 1;
  min-width: 150px;
  display: flex;
  justify-content: center;
}

.fruit-float img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.import-content {
  flex: 1;
  min-width: 300px;
}

.import-content h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.import-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .header-nav-row {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    position: relative;
  }

  .header-nav-row .container {
    flex-direction: row;
    gap: 15px;
    padding: 15px 20px;
    padding-right: 60px;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .header-nav-row .logo {
    flex-shrink: 0;
    margin-right: auto;
    order: 1;
  }

  .main-nav {
    display: block;
    order: 2;
    position: relative;
    width: auto;
    flex: 0;
  }

  .main-nav ul {
    display: none;
  }

  .header-right {
    position: relative;
    right: auto;
    top: auto;
    height: auto;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: flex-start;
    border-radius: 0;
    padding: 15px 20px;
    margin: 0;
  }

  .header-right::before {
    display: none;
  }

  .header-phones {
    width: 100%;
  }

  .header-language {
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    margin-top: 15px;
  }

  .language-selector-wrapper {
    width: 100%;
  }

  .language-current {
    width: 100%;
    justify-content: space-between;
  }

  .language-dropdown {
    width: 100%;
    right: 0;
    left: 0;
  }

  .header-nav-row .main-nav .mobile-menu-toggle {
    display: block !important;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-color);
    padding: 8px;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: auto;
    height: auto;
  }

  .mobile-menu-toggle:hover {
    color: var(--primary-dark);
  }

  /* Hero Section Responsive */
  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-title-main {
    font-size: 42px;
  }

  .hero-title-sub {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-services {
    gap: 15px;
    margin-bottom: 30px;
  }

  .hero-service-item {
    min-width: 120px;
    padding: 15px;
  }

  .hero-service-item i {
    font-size: 24px;
  }

  .hero-service-item span {
    font-size: 12px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  /* Services Overview Responsive */
  .services-overview {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Import/Export Section Responsive */
  .import-export .container {
    flex-direction: column;
    gap: 30px;
  }

  .import-image {
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }

  .import-image > img {
    width: 100%;
    flex: none;
    min-width: 100%;
    order: 1;
  }

  .fruit-float {
    width: 100%;
    flex: none;
    min-width: 100%;
    order: 2;
  }

  .fruit-float.melon {
    order: 2;
  }

  .fruit-float.grapes {
    order: 3;
  }

  .fruit-float img {
    max-width: 100%;
    width: 100%;
  }

  .import-content {
    width: 100%;
    order: 4;
  }

  .import-content h2 {
    font-size: 28px;
    text-align: center;
  }

  .import-content p {
    font-size: 16px;
    text-align: center;
  }

  .service-card {
    padding: 30px;
  }

  /* Mobile menu overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    padding: 0;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    -webkit-overflow-scrolling: touch;
  }

  /* Mobile menu to'liq ekranni qoplash uchun */
  @media (max-width: 480px) {
    .main-nav ul {
      max-width: 100%;
    }
  }

  .main-nav ul.active {
    display: flex;
    transform: translateX(0);
  }

  .main-nav ul li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .main-nav ul li.mobile-menu-header {
    display: flex !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    margin: 0;
  }

  .main-nav ul li.mobile-menu-header > div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .main-nav ul li.mobile-menu-header a {
    padding: 0;
    border-bottom: none;
  }

  .main-nav ul li.mobile-menu-header a:hover {
    background: transparent;
    padding-left: 0;
  }

  .mobile-menu-close {
    background: none !important;
    border: none !important;
    color: white !important;
    font-size: 24px !important;
    cursor: pointer !important;
    padding: 5px !important;
    transition: color 0.3s ease;
  }

  .mobile-menu-close:hover {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .main-nav ul li:last-child {
    border-bottom: none;
  }

  .main-nav ul li a {
    display: block;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
    width: 100%;
  }

  .main-nav ul li a:hover,
  .main-nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
    color: white;
  }

  /* Body scroll lock when menu is open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .tourism-layout {
    grid-template-columns: 1fr;
  }

  .tourism-circle {
    width: 300px;
    height: 300px;
  }

  .vertical-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 24px;
  }

  .consulting-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .export-intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .export-images {
    flex-direction: column;
  }

  .tourism-intro-grid {
    grid-template-columns: 1fr;
  }

  .consulting-intro-grid {
    grid-template-columns: 1fr;
  }

  .section-title-left {
    font-size: 36px;
    text-align: center;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .news-grid,
  .specialties-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Tourism Item Icon Styles */
.tourism-item-icon {
  width: 70px;
  height: 70px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  overflow: visible;
  padding: 10px;
}

.tourism-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
