/* ========================================
   КОМПОНЕНТЫ И ДОПОЛНИТЕЛЬНЫЕ СТИЛИ
   ======================================== */

/* ===== LIQUID GLASS НАВИГАЦИЯ ===== */
.stm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}

.stm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stm-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.stm-logo:hover {
  transform: scale(1.05);
}

.stm-nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.stm-nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

.stm-nav-menu a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.stm-nav-menu a:hover::before {
  width: 100%;
}

/* ===== HERO SECTION УЛУЧШЕННЫЙ ===== */
.stm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  overflow: hidden;
  margin-top: -60px;
  padding-top: 120px;
  padding-bottom: 3rem;
}

.stm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.5) 0%, rgba(52, 199, 89, 0.3) 100%);
  z-index: 1;
}

.stm-hero-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}

.stm-hero .stm-container {
  max-width: 100%;
  padding: 0 2rem 0 2rem;
  width: 100%;
}

.stm-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 3;
  justify-items: start;
  width: 100%;
}

.stm-hero-content {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3.5rem;
  border-radius: 24px;
  color: white;
  animation: slideInLeft 0.8s ease-out;
  max-width: 750px;
  width: 100%;
  margin: 50px;
  margin-right: auto;
  text-align: left;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stm-hero-eyebrow {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  justify-content: flex-start;
}

.stm-hero-eyebrow-pill {
  background: rgba(255, 255, 255, 0.25);
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stm-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  letter-spacing: -1px;
}

.stm-hero-gradient {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stm-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.stm-hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.stm-btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-block;
}

.stm-btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.2);
}

.stm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 113, 227, 0.3);
}

.stm-btn-outline {
  border: 2px solid white;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

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

.stm-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.stm-hero-stat {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

/* ===== CARD HERO MEDIA ===== */
.stm-hero-media {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

.stm-hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.stm-hero-photo {
  position: relative;
  height: 350px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.stm-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.stm-hero-card:hover .stm-hero-photo img {
  transform: scale(1.05);
}

.stm-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="70" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  z-index: 2;
}

.stm-hero-photo-content {
  position: relative;
  z-index: 2;
  color: white;
}

.stm-hero-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.stm-hero-caption {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
}

.stm-hero-floating {
  position: absolute;
  bottom: -25px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 3;
}

.stm-hero-float-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  color: var(--text-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stm-hero-float-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.stm-hero-float-title {
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 15px;
}

/* ===== TOURS SECTION ===== */
.stm-tours {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 50%, #f0f3f8 100%);
  overflow: hidden;
}

/* Декоративные элементы */
.stm-tours::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100, 200, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stm-tours::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(150, 100, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stm-tours-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.stm-section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stm-section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.stm-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stm-tours-footer {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

/* ===== FILTERS ===== */
.stm-tours-filters {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.stm-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
}

.stm-filter-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.stm-filter-select {
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stm-filter-select:hover,
.stm-filter-select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(100, 180, 255, 0.1);
}

.stm-filter-reset {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.stm-filter-reset:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.stm-loading {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.stm-loading::after {
  content: '';
  display: inline-block;
  margin-left: 0.5rem;
  animation: stm-spin 1s linear infinite;
}

@keyframes stm-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.stm-no-tours {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ===== TOUR CARD LIQUID GLASS ===== */
.stm-tour-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stm-tour-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.1), rgba(52, 199, 89, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stm-tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 113, 227, 0.15);
  border-color: rgba(0, 113, 227, 0.3);
}

.stm-tour-card:hover::before {
  opacity: 1;
}

.stm-tour-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

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

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

.stm-tour-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.stm-tour-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.stm-tour-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.stm-tour-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.stm-tour-location::before {
  content: '📍';
}

.stm-tour-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.stm-tour-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-secondary);
}

.stm-tour-meta-item.duration::before {
  content: '⏱';
}

.stm-tour-meta-item.people::before {
  content: '👥';
}

.stm-tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stm-tour-price {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stm-tour-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.stm-tour-rating::before {
  content: '⭐';
}

/* ===== ABOUT SECTION ===== */
.stm-about {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.02), rgba(52, 199, 89, 0.02));
}

.stm-about .stm-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.stm-about-header {
  text-align: center;
  width: 100%;
}

.stm-about-header .stm-section-title {
  margin-bottom: 1rem;
}

.stm-about-header .stm-section-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  display: block;
}

.stm-about-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.stm-about-text h3 {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.stm-about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.stm-about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
}

.stm-feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.stm-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 113, 227, 0.1);
}

.stm-feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stm-feature-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.stm-feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== GALLERY SECTION ===== */
.stm-gallery {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #F5F5F7 0%, #FFFFFF 100%);
}

.stm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.stm-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.stm-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.stm-gallery-item:hover img {
  transform: scale(1.1);
}

.stm-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stm-gallery-item:hover .stm-gallery-overlay {
  opacity: 1;
}

.stm-gallery-overlay::before {
  content: '🔍';
  font-size: 2.5rem;
}

/* ===== REQUEST FORM SECTION ===== */
.stm-request {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.05), rgba(52, 199, 89, 0.05));
}

.stm-request-container {
  max-width: 800px;
  margin: 0 auto;
}

.stm-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
}

.stm-form-group {
  margin-bottom: 1.5rem;
}

.stm-form-group:last-child {
  margin-bottom: 0;
}

.stm-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.stm-form input,
.stm-form textarea,
.stm-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
}

.stm-form input:focus,
.stm-form textarea:focus,
.stm-form select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
  background: white;
}

.stm-form textarea {
  min-height: 120px;
  resize: vertical;
}

.stm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stm-form-row .stm-form-group {
  margin-bottom: 1.5rem;
}

/* ===== PAYMENT SECTION ===== */
.stm-payment {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #F5F5F7 0%, #FFFFFF 100%);
}

.stm-payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stm-payment-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stm-payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 113, 227, 0.15);
}

.stm-payment-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.stm-payment-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.stm-payment-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.stm-payment-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.stm-payment-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.2);
}

/* ===== FOOTER ===== */
.stm-footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 5rem;
}

.stm-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 2rem;
}

.stm-footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.stm-footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.stm-footer-section a:hover {
  color: white;
}

.stm-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .stm-hero {
    min-height: 80vh;
    padding: 0 1rem;
    margin-top: -60px;
    padding-top: 100px;
    padding-bottom: 2rem;
    background-attachment: scroll;
  }
  
  .stm-hero .stm-container {
    padding: 0 1rem;
  }
  
  .stm-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stm-hero-content {
    padding: 2rem;
    border-radius: 16px;
    max-width: 100%;
    width: 100%;
  }
  
  .stm-hero-title {
    font-size: 2rem;
  }
  
  .stm-hero-subtitle {
    font-size: 1rem;
  }
  
  .stm-hero-meta {
    grid-template-columns: 1fr;
  }
  
  .stm-hero-photo {
    height: 300px;
  }
  
  .stm-hero-floating {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .stm-hero-float-card {
    flex: 1;
    min-width: unset;
    padding: 1rem;
  }
  
  .stm-form-row {
    grid-template-columns: 1fr;
  }
  
  .stm-about-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stm-tours-grid {
    grid-template-columns: 1fr;
  }
  
  .stm-nav-menu {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .stm-hero {
    min-height: auto;
    padding: 0 1rem;
    margin-top: -60px;
    padding-top: 90px;
    padding-bottom: 1.5rem;
  }
  
  .stm-hero .stm-container {
    padding: 0 1rem;
  }
  
  .stm-hero-content {
    padding: 1.5rem;
    max-width: 100%;
    width: 100%;
  }
  
  .stm-hero-title {
    font-size: 1.5rem;
  }
  
  .stm-hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .stm-hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .stm-btn {
    width: 100%;
    text-align: center;
    padding: 0.65rem 1.5rem;
  }
  
  .stm-hero-meta {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  .stm-hero-stat {
    font-size: 0.85rem;
  }
  
  .stm-hero-card {
    padding: 0.75rem;
  }
  
  .stm-hero-photo {
    height: 250px;
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .stm-hero-floating {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
  }
  
  .stm-hero-float-card {
    padding: 1rem;
    min-width: unset;
    font-size: 0.9rem;
  }
  
  .stm-hero-float-title {
    font-size: 0.9rem;
  }
  
  .stm-hero-eyebrow {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .stm-about-features {
    grid-template-columns: 1fr;
  }
  
  .stm-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stm-tours-filters {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stm-filter-group {
    min-width: unset;
  }
  
  .stm-filter-select,
  .stm-filter-reset {
    width: 100%;
  }
}
