/* ===== MANGYSTAU TOUR — styles.css ===== */
:root {
  --sand: #E8D5A3;
  --rust: #C4601A;
  --rust2: #A34E14;
  --sky: #2D7FC1;
  --dark: #1A1410;
  --dark2: #120E0A;
  --cream: #FAF6EF;
  --white: #FFFFFF;
  --card-bg: #1E170F;
  --border: rgba(196,96,26,0.2);
  --text-muted: rgba(232,213,163,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--cream); overflow-x: hidden; }

/* ===== LANG SWITCHER ===== */
.lang-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(18,14,10,0.97);
  display: flex; justify-content: flex-end; align-items: center;
  padding: 6px 40px; gap: 8px;
  border-bottom: 1px solid rgba(196,96,26,0.15);
}
.lang-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); padding: 4px 14px; border-radius: 3px;
  font-size: 12px; letter-spacing: 0.1em; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--rust); border-color: var(--rust); color: white;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 30px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(26,20,16,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: top 0.3s;
}
.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-brand img { height: 48px; width: 48px; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.02em;
}
.nav-brand-sub {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rust); font-weight: 600; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 13px; letter-spacing: 0.07em; text-transform: uppercase;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--rust); }
.nav-cta {
  background: var(--rust); color: var(--white) !important;
  padding: 10px 22px; border-radius: 4px;
}
.nav-cta:hover { background: var(--rust2) !important; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.burger span { display: block; width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0; z-index: 99;
  background: rgba(18,14,10,0.98); backdrop-filter: blur(20px);
  padding: 30px 30px 24px; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--cream); text-decoration: none; font-size: 16px;
  font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ===== HERO ===== */
.hero {
  height: 100vh; min-height: 600px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: 0;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1.0); } to { transform: scale(1.08); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(26,20,16,0.55) 0%,
    rgba(26,20,16,0.3) 40%,
    rgba(26,20,16,0.8) 100%);
}

/* Floating hero photos */
.float-photo {
  position: absolute; border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.float-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.float-photo:hover {
  transform: scale(1.08) translateY(-6px) rotate(0deg) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  z-index: 5;
}
.fp1 { width: 240px; height: 310px; left: 2%; top: 18%;
  animation: float1 9s ease-in-out infinite; transform: rotate(-5deg); }
.fp2 { width: 200px; height: 260px; left: 17%; bottom: 10%;
  animation: float2 11s ease-in-out infinite; transform: rotate(3deg); }
.fp3 { width: 280px; height: 190px; right: 3%; top: 14%;
  animation: float3 8s ease-in-out infinite; transform: rotate(2deg); }
.fp4 { width: 190px; height: 250px; right: 15%; bottom: 8%;
  animation: float4 12s ease-in-out infinite; transform: rotate(-3deg); }
.fp5 { width: 160px; height: 130px; right: 28%; top: 22%;
  animation: float5 10s ease-in-out infinite; transform: rotate(5deg); }

@keyframes float1 { 0%,100%{margin-top:0} 50%{margin-top:-20px} }
@keyframes float2 { 0%,100%{margin-top:0} 50%{margin-top:-15px} }
@keyframes float3 { 0%,100%{margin-top:0} 50%{margin-top:-18px} }
@keyframes float4 { 0%,100%{margin-top:0} 50%{margin-top:-12px} }
@keyframes float5 { 0%,100%{margin-top:0} 50%{margin-top:-22px} }

.hero-content {
  position: relative; z-index: 10;
  text-align: center; max-width: 680px; padding: 0 24px;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rust); font-weight: 700; margin-bottom: 18px;
  display: inline-block;
  border: 1px solid rgba(196,96,26,0.4); padding: 5px 16px; border-radius: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white); text-shadow: 0 4px 30px rgba(0,0,0,0.6);
  margin-bottom: 14px;
}
.hero-title em { color: var(--rust); font-style: normal; }
.hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.8);
  line-height: 1.75; margin-bottom: 36px; font-weight: 300;
}
.btn-primary {
  display: inline-block; background: var(--rust); color: white;
  text-decoration: none; padding: 16px 42px; border-radius: 4px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; transition: all 0.25s;
  box-shadow: 0 8px 30px rgba(196,96,26,0.45);
}
.btn-primary:hover { background: var(--rust2); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(196,96,26,0.5); }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-hint svg { opacity: 0.5; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--rust); padding: 52px 40px;
}
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center;
}
.stat-num { font-family: 'Playfair Display',serif; font-size: 2.8rem; font-weight: 900; color: white; display: block; }
.stat-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* ===== SECTIONS ===== */
.section { padding: 90px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rust); font-weight: 700; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display',serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 18px;
}

/* ===== WHY US ===== */
.why-section { background: var(--dark2); }
.why-intro { max-width: 560px; color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 56px; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.why-card {
  background: #1E170F; padding: 40px 32px;
  border-top: 3px solid transparent;
  transition: all 0.3s;
}
.why-card:hover { border-color: var(--rust); background: #251C12; }
.why-icon { font-size: 34px; margin-bottom: 16px; }
.why-card h3 { font-family: 'Playfair Display',serif; font-size: 1.15rem; margin-bottom: 10px; color: var(--sand); }
.why-card p { font-size: 13px; line-height: 1.8; color: var(--text-muted); }
.why-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(196,96,26,0.12); border: 1px solid rgba(196,96,26,0.3);
  padding: 10px 20px; border-radius: 30px; margin-top: 40px;
}
.why-badge span { font-size: 22px; }
.why-badge strong { font-size: 14px; color: var(--sand); }

/* ===== DAY TOURS ===== */
.day-tours-section { background: var(--dark); }
.day-tours-intro { color: var(--text-muted); font-size: 15px; max-width: 550px; line-height: 1.7; margin-bottom: 50px; }
.day-routes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.day-route-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.day-route-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.day-route-img { height: 180px; overflow: hidden; position: relative; }
.day-route-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s;
}
.day-route-card:hover .day-route-img img { transform: scale(1.07); }
.day-route-num {
  position: absolute; top: 12px; left: 12px;
  background: var(--rust); color: white; font-size: 10px;
  font-weight: 700; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 3px;
}
.day-route-body { padding: 22px 24px; }
.day-route-title { font-family: 'Playfair Display',serif; font-size: 1.05rem; margin-bottom: 12px; color: var(--cream); line-height: 1.3; }
.day-route-stops { list-style: none; margin-bottom: 18px; }
.day-route-stops li {
  font-size: 12px; color: var(--text-muted); padding: 4px 0;
  display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.day-route-stops li::before { content: '→'; color: var(--rust); font-weight: 700; }
.day-route-footer { display: flex; align-items: center; justify-content: space-between; }
.day-route-price { font-family: 'Playfair Display',serif; font-size: 1.5rem; font-weight: 900; color: var(--rust); }
.day-route-price small { font-family: 'Inter',sans-serif; font-size: 11px; color: var(--text-muted); font-weight: 400; }
.btn-outline {
  background: transparent; border: 1px solid var(--rust); color: var(--rust);
  padding: 8px 18px; border-radius: 3px; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600; cursor: pointer;
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--rust); color: white; }

/* ===== MULTI DAY TOURS ===== */
.multi-tours-section { background: var(--dark2); }
.tours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px,1fr)); gap: 24px; margin-top: 50px; }
.tour-card {
  background: #1A140E; border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.tour-img { height: 210px; overflow: hidden; position: relative; }
.tour-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s;
}
.tour-card:hover .tour-img img { transform: scale(1.07); }
.tour-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--rust); color: white; font-size: 10px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px;
}
.tour-body { padding: 26px 28px 28px; }
.tour-days { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sky); font-weight: 600; margin-bottom: 8px; }
.tour-title { font-family: 'Playfair Display',serif; font-size: 1.2rem; font-weight: 700; color: var(--cream); margin-bottom: 14px; line-height: 1.3; }
.tour-hl { list-style: none; margin-bottom: 20px; }
.tour-hl li {
  font-size: 12.5px; color: var(--text-muted); padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 8px;
}
.tour-hl li::before { content: '→'; color: var(--rust); font-weight: 700; }
.tour-footer { display: flex; align-items: center; justify-content: space-between; }
.tour-price { font-family: 'Playfair Display',serif; font-size: 1.55rem; font-weight: 900; color: var(--rust); }
.tour-price small { font-family: 'Inter',sans-serif; font-size: 11px; color: var(--text-muted); font-weight: 400; }

/* ===== BOZZHYRA BG SECTION ===== */
.bozzhyra-section {
  position: relative; padding: 120px 40px;
  background-attachment: fixed; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.bozzhyra-overlay {
  position: absolute; inset: 0;
  background: rgba(26,20,16,0.65);
}
.bozzhyra-content {
  position: relative; z-index: 2; text-align: center; max-width: 700px;
}
.bozzhyra-content h2 {
  font-family: 'Playfair Display',serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 20px; color: white;
}
.bozzhyra-content p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 36px; }

/* ===== GALLERY ===== */
.gallery-section { background: #0F0B08; padding: 90px 0; }
.gallery-section .section-inner { padding: 0 40px; margin-bottom: 36px; }
.gallery-strip {
  display: flex; gap: 10px; overflow-x: auto; padding: 10px 40px 20px;
  scrollbar-width: thin; scrollbar-color: var(--rust) #1a1410;
}
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--rust); border-radius: 2px; }
.g-item {
  flex: 0 0 auto; border-radius: 6px; overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s; cursor: pointer;
}
.g-item:hover { transform: scale(1.04); box-shadow: 0 12px 40px rgba(0,0,0,0.7); }
.g-item img { height: 240px; width: auto; display: block; object-fit: cover; }

/* ===== FLOAT GRID ===== */
.float-section { background: #16100C; padding: 90px 40px; }
.float-masonry {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 50px;
}
.fm-item {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  transition: transform 0.4s, box-shadow 0.4s;
}
.fm-item:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 60px rgba(0,0,0,0.7); }
.fm-item:nth-child(even) { margin-top: 24px; }
.fm-item:nth-child(3n) { margin-top: -12px; }
.fm-item img { width: 100%; height: 220px; object-fit: cover; display: block; }
.fm-cap { background: var(--card-bg); padding: 12px 16px; font-size: 12px; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-section { background: var(--dark2); padding: 90px 40px; }
.contact-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info-title { font-family: 'Playfair Display',serif; font-size: 2.2rem; margin-bottom: 14px; }
.contact-desc { color: var(--text-muted); font-size: 14px; line-height: 1.75; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.c-item { display: flex; align-items: flex-start; gap: 16px; }
.c-icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: rgba(196,96,26,0.12); border: 1px solid rgba(196,96,26,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.c-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(232,213,163,0.4); margin-bottom: 3px; }
.c-val { font-size: 14px; color: var(--sand); }
.c-val a { color: var(--sand); text-decoration: none; transition: color 0.2s; }
.c-val a:hover { color: var(--rust); }

/* Quick contact buttons */
.quick-contact { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.qc-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 6px;
  font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s;
  border: none; cursor: pointer; font-family: 'Inter',sans-serif;
}
.qc-wa { background: #25D366; color: white; }
.qc-wa:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.qc-mail { background: var(--rust); color: white; }
.qc-mail:hover { background: var(--rust2); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(196,96,26,0.4); }
.qc-ig {
  background: linear-gradient(135deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: white;
}
.qc-ig:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(220,39,67,0.4); }

/* ===== FORM ===== */
.form-wrap { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg label {
  display: block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(232,213,163,0.45); margin-bottom: 7px; font-weight: 600;
}
.fg input, .fg select, .fg textarea {
  width: 100%; background: #1E170F; border: 1px solid rgba(196,96,26,0.25);
  color: var(--cream); padding: 13px 16px; border-radius: 4px;
  font-size: 14px; font-family: 'Inter',sans-serif; outline: none;
  transition: border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--rust); }
.fg select option { background: #1E170F; }
.fg textarea { height: 100px; resize: vertical; }

/* Phone field */
.phone-wrap { display: flex; gap: 0; }
.phone-country {
  background: #1E170F; border: 1px solid rgba(196,96,26,0.25);
  border-right: none; color: var(--cream); padding: 13px 12px;
  border-radius: 4px 0 0 4px; font-size: 13px;
  font-family: 'Inter',sans-serif; outline: none; min-width: 120px; cursor: pointer;
}
.phone-country:focus { border-color: var(--rust); }
.phone-num {
  flex: 1; border-radius: 0 4px 4px 0 !important;
}

.submit-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.submit-btn {
  padding: 15px 20px; border: none; border-radius: 4px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700; cursor: pointer; font-family: 'Inter',sans-serif;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.submit-wa { background: #25D366; color: white; }
.submit-wa:hover { background: #1ebe5c; transform: translateY(-1px); }
.submit-email { background: var(--rust); color: white; }
.submit-email:hover { background: var(--rust2); transform: translateY(-1px); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(10,7,5,0.92); align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #1A140E; border-radius: 10px; max-width: 680px; width: 100%;
  max-height: 88vh; overflow-y: auto; border: 1px solid rgba(196,96,26,0.3);
  padding: 44px; position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; color: var(--sand); font-size: 22px; cursor: pointer;
}
.modal h2 { font-family: 'Playfair Display',serif; font-size: 1.7rem; margin-bottom: 6px; }
.modal-price { font-family: 'Playfair Display',serif; font-size: 2rem; font-weight: 900; color: var(--rust); margin-bottom: 28px; }
.day-block { margin-bottom: 22px; }
.day-title { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sky); font-weight: 700; margin-bottom: 8px; }
.day-text { font-size: 13px; line-height: 1.85; color: var(--text-muted); border-left: 2px solid rgba(196,96,26,0.4); padding-left: 16px; }
.day-text strong { color: var(--sand); }

/* ===== FOOTER ===== */
footer {
  background: #0A0705; padding: 40px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(196,96,26,0.2); flex-wrap: wrap; gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 40px; }
.footer-brand-name { font-family: 'Playfair Display',serif; font-size: 1rem; font-weight: 700; color: var(--cream); }
footer p { font-size: 12px; color: rgba(232,213,163,0.35); }
.social-links { display: flex; gap: 10px; }
.soc-link {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(196,96,26,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--sand); text-decoration: none; font-size: 17px; transition: all 0.2s;
}
.soc-link:hover { background: var(--rust); border-color: var(--rust); color: white; }

/* WA FLOAT */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5); font-size: 26px;
  text-decoration: none; transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.12); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  nav { padding: 10px 20px; top: 28px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .lang-bar { padding: 6px 20px; }
  .section { padding: 60px 20px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .float-photo { display: none; }
  .hero-title { font-size: 2.4rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2px; }
  .tours-grid { grid-template-columns: 1fr; }
  .day-routes-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .submit-row { grid-template-columns: 1fr; }
  .float-masonry { grid-template-columns: 1fr; }
  .fm-item:nth-child(even), .fm-item:nth-child(3n) { margin-top: 0; }
  footer { flex-direction: column; text-align: center; align-items: center; }
  .bozzhyra-section { background-attachment: scroll; }
  .quick-contact { flex-direction: column; }
  .qc-btn { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .stats-bar { padding: 40px 20px; }
  .stat-num { font-size: 2.2rem; }
  nav { top: 28px; }
  .nav-brand-name { font-size: 1rem; }
}
