/* ============================================
   1001 VGC Landing — Shared Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

ul, ol {
  list-style: none;
}

/* --- CSS Variables --- */
:root {
  --primary-dark: #0a0a0a;
  --primary-green: #2d8c4e;
  --primary-light: #3dab63;
  --green-deep: #1a5c32;
  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #122b1c 30%, #1a5c32 60%, #2d8c4e 100%);
  --gradient-cta: linear-gradient(135deg, #1a5c32 0%, #2d8c4e 100%);
  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dark: #1a1a1a;
  --text-gray: #555555;
  --bg-light: #f5f7f5;
  --bg-card: #ffffff;
  --border-light: #e8ece8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --container: 1140px;
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-alt {
  background: var(--bg-light);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin-bottom: 48px;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--primary-light);
}

.logo-img {
  height: 32px;
  width: auto;
}

.hero-logo {
  max-height: 80px;
  width: auto;
  margin: 0 auto 20px;
  display: block;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.header-phone svg {
  width: 16px;
  height: 16px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(45, 140, 78, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(45, 140, 78, 0.2);
  border: 1px solid rgba(45, 140, 78, 0.3);
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .accent {
  color: var(--primary-light);
}

.hero-title-sub {
  color: var(--text-light);
  font-weight: 600;
}

.hero-title-accent {
  color: var(--primary-light);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Hero Form --- */
.hero-form {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 520px;
  margin: 0 auto 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.12);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.6)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: #1a1a1a;
  color: #ffffff;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient-cta);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(45, 140, 78, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit.success {
  background: #27ae60;
}

.form-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* --- Messenger Buttons --- */
.messenger-section {
  margin-top: 32px;
}

.messenger-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.messenger-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.messenger-btn:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.messenger-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.messenger-btn.whatsapp {
  background: #25D366;
}

.messenger-btn.viber {
  background: #7360F2;
}

.messenger-btn.telegram {
  background: #0088CC;
}

.messenger-btn.phone {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.messenger-btn.phone:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(45, 140, 78, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-green);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ============================================
   DESTINATIONS / COVERAGE
   ============================================ */
.destinations {
  background: var(--gradient-hero);
  padding: 80px 0;
  text-align: center;
}

.destinations .section-title {
  color: var(--text-white);
}

.destinations .section-subtitle {
  color: var(--text-light);
}

.dest-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.dest-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.dest-tag:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.dest-tag .flag {
  font-size: 1.2rem;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================
   STEPS / PROCESS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Connector line between steps */
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--border-light);
}

/* ============================================
   WHY US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
}

.why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(45, 140, 78, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}

.why-icon svg {
  width: 20px;
  height: 20px;
}

.why-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-text p {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.review-source {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-top: 2px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-green);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--gradient-hero);
  padding: 80px 0;
  text-align: center;
}

.cta-box {
  max-width: 600px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ============================================
   DISCLAIMER
   ============================================ */
.disclaimer {
  background: #f8f8f8;
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
}

.disclaimer-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  line-height: 1.7;
}

.disclaimer-text strong {
  color: #666;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  padding: 40px 0;
  color: var(--text-light);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  opacity: 1;
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   BUTTONS (Shared)
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-cta);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(45, 140, 78, 0.4);
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--primary-green);
  border: 1px solid var(--primary-green);
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-dark:hover {
  background: var(--primary-green);
  color: var(--text-white);
  opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ENHANCED ANIMATIONS
   ============================================ */

/* Staggered fade-in */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.15s; }
.fade-in:nth-child(4) { transition-delay: 0.2s; }
.fade-in:nth-child(5) { transition-delay: 0.25s; }
.fade-in:nth-child(6) { transition-delay: 0.3s; }

/* CTA button pulse glow */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 140, 78, 0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(45, 140, 78, 0.2); }
}

.form-submit {
  animation: pulse-glow 3s ease-in-out infinite;
}

.form-submit:hover {
  animation: none;
}

/* Hero gradient animation */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero {
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
}

/* Stat counter scale-in */
@keyframes scale-in {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.stat-item {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.visible {
  opacity: 1;
  animation: scale-in 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.15s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

/* ============================================
   FLOATING CONTACT (Mobile)
   ============================================ */
.floating-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  padding: 12px 16px;
  display: none;
  z-index: 90;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-contact .messenger-row {
  gap: 8px;
}

.floating-contact .messenger-btn {
  flex: 1;
  justify-content: center;
  padding: 10px 12px;
  font-size: 0.8rem;
}

.floating-contact .messenger-btn span {
  display: none;
}

/* ============================================
   SHORT VARIANT SPECIFIC
   ============================================ */
.short-hero {
  min-height: auto;
  padding: 120px 0 60px;
}

.short-bullets {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 32px;
}

.short-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.short-bullets li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary-light);
  margin-top: 2px;
}

.short-form {
  max-width: 400px;
  margin: 0 auto;
}

.short-form .form-row {
  flex-direction: row;
  gap: 12px;
}

.short-form .form-submit {
  width: auto;
  padding: 14px 28px;
  white-space: nowrap;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.short-disclaimer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.short-disclaimer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .dest-grid {
    gap: 10px;
  }

  .dest-tag {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .stats-row {
    gap: 32px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .messenger-btn span {
    display: none;
  }

  .messenger-btn {
    padding: 12px 16px;
  }

  .floating-contact {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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

  /* Short variant mobile */
  .short-form .form-row {
    flex-direction: column;
  }

  .short-form .form-submit {
    width: 100%;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-form {
    padding: 20px 16px;
  }

  .messenger-row {
    gap: 8px;
  }

  .container {
    padding: 0 24px;
  }
}
