<style>
*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent}
:root {
  --spring-green: #7CB342;
  --cherry-pink: #F06292;
  --sunny-yellow: #FFD54F;
  --sky-blue: #81D4FA;
  --bg-light: #F9FBF7;
  --text-dark: #2C3E50;
  --glass: rgba(255, 255, 255, 0.75);
}
body { font-family: "Inter", sans-serif; background: var(--bg-light); color: var(--text-dark); overflow-x: hidden }
.ms { font-family: "Material Symbols Rounded"; font-style: normal; display: inline-block; line-height: 1; user-select: none }

/* LOGO & BRANDING — CAMPAIGN QUALITY */
.logo-wrap { display: flex; align-items: center; gap: 12px; cursor: pointer; position: relative }
.logo-wrap:hover .logo-shape { transform: scale(1.08); box-shadow: 0 0 30px rgba(240,98,146,0.5), 0 0 60px rgba(124,179,66,0.3) }
.logo-wrap:hover .logo-txt { background-size: 200% auto }

.logo-shape { 
  width: 44px; height: 44px; 
  background: #0B101E; 
  border-radius: 12px; 
  display: flex; align-items: center; justify-content: center; 
  position: relative; overflow: hidden; 
  box-shadow: 0 4px 20px rgba(240,98,146,0.35), 0 0 40px rgba(124,179,66,0.15), inset 0 1px 0 rgba(255,255,255,0.08); 
  border: 1.5px solid rgba(240,98,146,0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: logoGlow 3s ease-in-out infinite alternate
}
@keyframes logoGlow { 
  0% { box-shadow: 0 4px 20px rgba(240,98,146,0.35), 0 0 40px rgba(124,179,66,0.15) } 
  100% { box-shadow: 0 4px 25px rgba(124,179,66,0.4), 0 0 50px rgba(240,98,146,0.2) } 
}
.logo-shape::before { 
  content: ""; position: absolute; inset: -1px; 
  background: conic-gradient(from 0deg, var(--cherry-pink), var(--spring-green), var(--sunny-yellow), var(--cherry-pink)); 
  border-radius: 12px; z-index: -1; opacity: 0.6;
  animation: logoSpin 4s linear infinite 
}
@keyframes logoSpin { to { transform: rotate(360deg) } }
.logo-shape::after { 
  content: ""; position: absolute; inset: 1.5px; 
  background: #0B101E; border-radius: 11px; z-index: 0 
}

/* PYRAMID ICON */
.logo-bloom { 
  position: relative; z-index: 1;
  width: 0; height: 0; 
  border-left: 12px solid transparent; border-right: 12px solid transparent; 
  border-bottom: 20px solid var(--cherry-pink); 
  filter: drop-shadow(0 0 8px var(--cherry-pink)) drop-shadow(0 0 16px rgba(240,98,146,0.4));
  animation: pyramidPulse 2.5s ease-in-out infinite alternate
}
@keyframes pyramidPulse { 
  0% { filter: drop-shadow(0 0 6px var(--cherry-pink)) drop-shadow(0 0 12px rgba(240,98,146,0.3)) } 
  100% { filter: drop-shadow(0 0 10px var(--spring-green)) drop-shadow(0 0 20px rgba(124,179,66,0.4)) } 
}
.logo-bloom::before { 
  content: ""; position: absolute; 
  top: 3px; left: -9px; width: 0; height: 0; 
  border-left: 9px solid transparent; border-right: 9px solid transparent; 
  border-bottom: 15px solid var(--spring-green); 
  filter: drop-shadow(0 0 6px var(--spring-green));
  animation: pyramidPulse2 2.5s ease-in-out infinite alternate-reverse
}
@keyframes pyramidPulse2 { 
  0% { filter: drop-shadow(0 0 6px var(--spring-green)) } 
  100% { filter: drop-shadow(0 0 10px var(--cherry-pink)) } 
}
.logo-bloom::after { 
  content: ""; position: absolute; 
  top: 6px; left: -5px; width: 0; height: 0; 
  border-left: 5px solid transparent; border-right: 5px solid transparent; 
  border-bottom: 8px solid var(--sunny-yellow); 
  filter: drop-shadow(0 0 4px var(--sunny-yellow)); opacity: 0.8
}

/* LOGO TEXT — ANIMATED GRADIENT */
.logo-txt { 
  font-family: "Inter", sans-serif; font-size: 22px; font-weight: 900; 
  letter-spacing: 0.12em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--cherry-pink), var(--spring-green), var(--sunny-yellow), var(--cherry-pink)); 
  background-size: 300% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
  transition: background-size 0.4s
}
@keyframes textShimmer { to { background-position: 300% center } }
.logo-txt em { 
  font-style: normal; 
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, var(--cherry-pink), #FF9800); 
  -webkit-background-clip: text; background-clip: text 
}

/* NAV */
.nav { position: fixed; top: 40px; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 80px; background: var(--glass); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(124, 179, 66, 0.1) }
.nav-links { display: flex; gap: 32px }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-dark); text-decoration: none; transition: all 0.2s; cursor: pointer; opacity: 0.8 }
.nav-links a:hover { color: var(--spring-green); opacity: 1 }

.top-ad-banner { position: fixed; top: 0; left: 0; right: 0; height: 40px; background: linear-gradient(90deg, #F06292, #FFD54F); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; cursor: pointer; z-index: 1000; letter-spacing: 0.05em; text-transform: uppercase }
.top-ad-banner:hover { opacity: 0.95 }

.btn-gold { background: linear-gradient(135deg, var(--spring-green), #689F38); color: #fff; font-size: 14px; font-weight: 700; border: none; padding: 12px 28px; border-radius: 14px; cursor: pointer; transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 8px 20px rgba(124, 179, 66, 0.35) }
.btn-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 25px rgba(124, 179, 66, 0.45) }
.btn-out { background: #fff; color: var(--text-dark); font-size: 14px; font-weight: 600; border: 2px solid var(--spring-green); padding: 11px 28px; border-radius: 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); box-shadow: 0 4px 12px rgba(0,0,0,0.05) }
.btn-out:hover { background: #F9FBF7; transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 20px rgba(124, 179, 66, 0.15) }

/* HERO */
.hero { height: 85vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; padding-top: 40px }
.hero-bg { position: absolute; inset: 0; background: url("assets/hero_bg.png") center/cover; animation: zoom 25s ease-in-out infinite alternate }
@keyframes zoom { from { transform: scale(1.02) } to { transform: scale(1.08) } }
.hero-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(124,179,66,0.3)) }
.hero-body { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 900px; animation: up 1s cubic-bezier(0.19, 1, 0.22, 1) both }
@keyframes up { from { opacity: 0; transform: translateY(40px) } to { opacity: 1; transform: translateY(0) } }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--spring-green); color: var(--spring-green); font-size: 11px; font-weight: 800; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.05) }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cherry-pink); animation: blink 2s infinite }
@keyframes blink { 0%, 100% { opacity: 1; transform: scale(1) } 50% { opacity: 0.4; transform: scale(0.9) } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(124, 179, 66, 0.4) } 70% { box-shadow: 0 0 0 10px rgba(124, 179, 66, 0) } 100% { box-shadow: 0 0 0 0 rgba(124, 179, 66, 0) } }
.hero-h { font-family: "Playfair Display", serif; font-size: clamp(38px, 6vw, 64px); font-weight: 900; line-height: 1.05; margin-bottom: 16px; color: var(--text-dark) }
.hero-h em { font-style: italic; color: var(--spring-green) }
.hero-p { font-size: 16px; color: #37474F; font-weight: 600; line-height: 1.5; max-width: 540px; margin: 0 auto 32px; text-shadow: 0 1px 2px rgba(255,255,255,0.8) }
.hero-btns { display: flex; gap: 16px; justify-content: center; }

/* STATS */
.stats { display: flex; align-items: center; justify-content: center; gap: 48px; padding: 24px 48px; background: #fff; border-bottom: 1px solid #ECEFF1; flex-wrap: wrap }
.stat-n { font-family: "Playfair Display", serif; font-size: 28px; font-weight: 900; color: var(--cherry-pink); text-align: center }
.stat-l { font-size: 12px; font-weight: 700; color: #90A4AE; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; text-align: center }

/* SECTIONS */
.sec { padding: 48px 48px }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.15em; color: var(--cherry-pink); text-transform: uppercase; text-align: center; margin-bottom: 8px }
.sec-h { font-family: "Playfair Display", serif; font-size: clamp(28px, 4vw, 44px); font-weight: 900; text-align: center; line-height: 1.1; margin-bottom: 8px; color: var(--text-dark) }
.sec-h em { font-style: italic; color: var(--spring-green) }
.sec-p { font-size: 15px; color: #78909C; text-align: center; max-width: 500px; margin: 0 auto 32px; line-height: 1.5 }

/* QUICK LINKS */
.quick-strip { background: #F1F8E9; padding: 10px 48px; display: flex; align-items: center; justify-content: center; gap: 20px; border-bottom: 1px solid rgba(124, 179, 66, 0.1); overflow-x: auto; white-space: nowrap; position: relative; }
.quick-strip::after { content: ''; position: absolute; right: 0; top: 0; height: 100%; width: 30px; background: linear-gradient(to left, #F1F8E9, transparent); pointer-events: none; }
.ql { font-size: 11px; font-weight: 700; color: var(--spring-green); text-decoration: none; display: flex; align-items: center; gap: 4px; transition: opacity 0.2s; padding: 4px 0 }
.ql:hover { opacity: 0.7 }

/* SERVICES - HIGHER DENSITY */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto }
.svc-card { position: relative; border-radius: 20px; overflow: hidden; cursor: pointer; height: 260px; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: block; background: #EEE; border: 1px solid #ECEFF1 }
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(124, 179, 66, 0.15); border-color: var(--spring-green) }
.svc-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s }
.svc-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 70%) }
.svc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; color: #fff }
.svc-ico { width: 36px; height: 36px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 8px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px) }
.svc-name { font-size: 17px; font-weight: 800; margin-bottom: 2px }
.svc-desc { font-size: 12px; color: rgba(255,255,255,0.9); line-height: 1.3 }

/* HOW */
.how-sec { padding: 60px 48px; background: linear-gradient(135deg, #E8F5E9, #F1F8E9) }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1040px; margin: 0 auto }
.step { background: #fff; border: 1px solid #ECEFF1; border-radius: 24px; padding: 32px 24px; transition: all 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.02) }
.step:hover { border-color: var(--spring-green); transform: translateY(-4px) }
.step-n { font-family: "Playfair Display", serif; font-size: 44px; font-weight: 900; color: rgba(124, 179, 66, 0.12); line-height: 1; margin-bottom: 12px }
.step-ico { width: 44px; height: 44px; border-radius: 14px; background: #F1F8E9; border: 1px solid rgba(124, 179, 66, 0.2); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--spring-green); margin-bottom: 12px }
.step-t { font-size: 16px; font-weight: 800; margin-bottom: 6px; color: var(--text-dark) }
.step-d { font-size: 13px; color: #607D8B; line-height: 1.6 }

/* DEST */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto }
.dest-item { position: relative; border-radius: 20px; overflow: hidden; height: 220px; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,0.04) }
.dest-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s }
.dest-item:hover .dest-img { transform: scale(1.1) }
.dest-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%) }
.dest-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px }
.dest-city { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 900; color: #fff }
.dest-info { font-size: 12px; color: rgba(255,255,255,0.9); margin-top: 2px; font-weight: 500 }

/* PARTNERS */
.partners { padding: 40px 48px; text-align: center; border-bottom: 1px solid #ECEFF1; background: #fff }
.partners-lbl { font-size: 12px; font-weight: 700; color: #B0BEC5; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px }
.partners-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap }
.partner { font-family: "Playfair Display", serif; font-size: 18px; font-weight: 700; color: #CFD8DC; text-decoration: none; transition: color 0.3s }
.partner:hover { color: var(--spring-green) }

/* CTA */
.cta-sec { position: relative; height: 420px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center }
.cta-bg { position: absolute; inset: 0; background: url("assets/cta_bg.png") center/cover }
.cta-body { position: relative; z-index: 2; padding: 0 20px }
.cta-h { font-family: "Playfair Display", serif; font-size: clamp(32px, 5vw, 52px); font-weight: 900; margin-bottom: 16px; color: #fff; text-shadow: 0 4px 15px rgba(0,0,0,0.3) }
.cta-p { font-size: 16px; color: #fff; margin-bottom: 32px; font-weight: 600 }

/* FOOTER */
footer { background: #fff; border-top: 1px solid #ECEFF1; padding: 60px 48px 30px }
.ft { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px }

/* APP SCREEN - DENSITY */
.app-hdr { padding: 16px 20px }
.app-hero { height: 40% }
.deal-card { left: 12px; right: 12px; padding: 16px 20px 20px; border-radius: 20px 20px 0 0 }
.deal-code { font-size: 28px }
.app-body { padding: 4px 12px 120px; overflow-y: auto; flex: 1 }
.flash-row { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 16px; scrollbar-width: none; -webkit-overflow-scrolling: touch }
.flash-row::-webkit-scrollbar { display: none }
.flash-item { flex-shrink: 0; width: 140px; background: #F9FBF7; border: 1px solid #ECEFF1; border-radius: 16px; padding: 12px; position: relative }
.flash-img { width: 100%; height: 80px; border-radius: 12px; margin-bottom: 8px; background-size: cover; background-position: center }
.flash-t { font-size: 12px; font-weight: 800; color: var(--text-dark); margin-bottom: 2px }
.flash-p { font-size: 11px; font-weight: 700; color: var(--spring-green) }
.app-lbl { padding-top: 20px; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center }
.app-lbl a { font-size: 11px; text-decoration: none; color: var(--cherry-pink); cursor: pointer; }
.svc-g { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px }
.mini { height: 160px; border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; transition: 0.3s; box-shadow: 0 8px 20px rgba(0,0,0,0.08); border: none }
.mini:active { transform: scale(0.95) }
.mini-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: 0.5s }
.mini:hover .mini-bg { transform: scale(1.1) }
.mini-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%) }
.mini-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; color: #fff; z-index: 2 }
.mini-lbl { font-family: "Playfair Display", serif; font-size: 16px; font-weight: 900; letter-spacing: 0.02em }
.mini-tag { font-size: 9px; font-weight: 800; background: var(--sunny-yellow); color: #000; padding: 3px 8px; border-radius: 100px; text-transform: uppercase; margin-bottom: 6px; display: inline-block }
.mini-ico { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; z-index: 2 }

/* CHAT */
/* APP CONTAINER & SIDEBARS */
#appPage { background: linear-gradient(135deg, #F4F7F2 0%, #E8F5E9 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative }
.app-wrap { width: 100%; max-width: 430px; height: 100vh; background: #fff; box-shadow: 0 0 80px rgba(0,0,0,0.12); position: relative; overflow: hidden; flex-shrink: 0; display: flex; flex-direction: column; border-left: 1px solid rgba(0,0,0,0.04); border-right: 1px solid rgba(0,0,0,0.04) }

.ads-side { position: absolute; top: 40px; width: 180px; display: none; flex-direction: column; gap: 20px }
.ads-l { left: calc(50% - 420px) }
.ads-r { right: calc(50% - 420px) }
.ad-box { background: #fff; border-radius: 20px; padding: 12px; border: 1px solid #ECEFF1; box-shadow: 0 4px 15px rgba(0,0,0,0.05) }
.ad-img { width: 100%; height: 100px; border-radius: 12px; background-size: cover; background-position: center; margin-bottom: 8px }
.ad-t { font-size: 11px; font-weight: 800; color: var(--text-dark) }
.ad-p { font-size: 10px; color: var(--spring-green); margin-top: 2px }

@media(min-width: 1000px) { .ads-side { display: flex } }

.screen { display: flex; flex-direction: column; height: 100%; overflow-y: auto; overflow-x: hidden }
.screen.hidden { display: none; }
.chat-hdr { display: flex; align-items: center; gap: 14px; padding: 48px 20px 14px; background: rgba(255,255,255,0.9); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(124, 179, 66, 0.1); flex-shrink: 0; z-index: 10 }
.back-btn { width: 36px; height: 36px; border-radius: 10px; background: #fff; border: 1px solid #ECEFF1; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--spring-green); font-size: 20px }
.back-btn:hover { background: var(--bg-light); transform: translateX(-3px) }
.chat-t { font-family: "Playfair Display", serif; font-size: 18px; font-weight: 900; color: var(--text-dark) }
.chat-s { font-size: 11px; color: #90A4AE; margin-top: 1px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em }
.online { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--spring-green); margin-right: 6px; box-shadow: 0 0 8px var(--spring-green) }
.chat-av { width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, var(--cherry-pink), #f48fb1); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; box-shadow: 0 4px 12px rgba(240, 98, 146, 0.3) }

.chat-msgs { flex: 1; overflow-y: auto; padding: 16px 14px 20px; display: flex; flex-direction: column; gap: 14px; position: relative; background: linear-gradient(180deg, #F9FBF7 0%, #fff 100%) }
.res-area { min-height: unset; max-height: 45vh; overflow-y: auto; overflow-x: hidden; padding: 20px 20px 10px; background: #fff; border-bottom: 2px solid #ECEFF1; display: none; box-shadow: 0 4px 15px rgba(0,0,0,0.03); z-index: 10 }
.res-area.on { display: block; animation: slideDown 0.3s ease-out }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px) } to { opacity: 1; transform: translateY(0) } }
.res-empty-lbl { text-align: center; color: #B0BEC5; font-size: 11px; padding: 40px 0; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em }
.promos { display: flex; gap: 8px; overflow-x: auto; padding: 10px 14px; background: #fff; border-bottom: 1px solid #ECEFF1; flex-shrink: 0; scrollbar-width: none }
.promos::-webkit-scrollbar { display: none }
.p-badge { flex-shrink: 0; background: #F1F8E9; border: 1px solid rgba(124, 179, 66, 0.1); padding: 6px 14px; border-radius: 100px; font-size: 10px; font-weight: 800; color: var(--spring-green); display: flex; align-items: center; gap: 4px; cursor: pointer; }
.p-badge.hot { background: #FCE4EC; border-color: rgba(240, 98, 146, 0.1); color: var(--cherry-pink) }
.msg { display: flex; flex-direction: column; max-width: 88%; animation: msgIn 0.5s cubic-bezier(0.19, 1, 0.22, 1) }
@keyframes msgIn { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: translateY(0) } }
.msg.user { align-self: flex-end; align-items: flex-end }
.msg.ai { align-self: flex-start }

.bub { padding: 14px 20px; font-size: 15px; line-height: 1.6; position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.03) }
.bub.ai { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); border: 1px solid rgba(124, 179, 66, 0.15); border-radius: 4px 22px 22px 22px; color: #37474F }
.bub.user { background: var(--spring-green); color: #fff; border-radius: 22px 22px 4px 22px; box-shadow: 0 8px 20px rgba(124, 179, 66, 0.2) }

.res-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; width: 100% }
.rc { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border: 1px solid #ECEFF1; border-radius: 20px; padding: 18px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: 0.3s; position: relative; overflow: hidden }
.rc:hover { transform: translateY(-3px) scale(1.01); border-color: var(--spring-green); box-shadow: 0 12px 25px rgba(124, 179, 66, 0.1) }
.rc::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--sunny-yellow); opacity: 0 }
.rc.best::before { opacity: 1 }
.rc.best { border-color: var(--sunny-yellow); background: #FFFEF7 }

.rc-n { font-family: "Playfair Display", serif; font-size: 15px; font-weight: 900; color: var(--text-dark) }
.rc-i { font-size: 11px; color: #78909C; margin-top: 2px; font-weight: 600 }
.rc-p { font-family: "Inter", sans-serif; font-size: 18px; font-weight: 800; color: var(--spring-green) }
.rc-img { width: 50px; height: 50px; border-radius: 12px; background-size: cover; background-position: center; margin-right: 12px; flex-shrink: 0 }
.rc-sp { position: absolute; top: 0; right: 0; background: var(--sunny-yellow); color: #000; font-size: 8px; font-weight: 900; padding: 4px 10px; border-radius: 0 0 0 12px; text-transform: uppercase }
.rc-p span { font-size: 14px; vertical-align: super; margin-right: 2px }

.links-list { display: flex; flex-direction: column; gap: 8px; margin-top: 10px }
.lnk { background: #fff; border: 1px solid #ECEFF1; border-radius: 16px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; text-decoration: none; transition: 0.2s }
.lnk:hover { background: #F9FBF7; border-color: var(--spring-green) }
.lnk-n { font-weight: 800; font-size: 13px; color: var(--text-dark) }
.lnk-d { font-size: 11px; color: #90A4AE; margin-top: 2px }

.typing { display: flex; gap: 5px; padding: 12px 18px; background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); border-radius: 20px; width: fit-content; margin: 10px 0 }
.td { width: 6px; height: 6px; border-radius: 50%; background: var(--spring-green); animation: tp 1.4s ease-in-out infinite; opacity: 0.3 }
.td:nth-child(2) { animation-delay: 0.2s } .td:nth-child(3) { animation-delay: 0.4s }
@keyframes tp { 0%, 60%, 100% { transform: scale(1); opacity: 0.3 } 30% { transform: scale(1.4); opacity: 1 } }

/* CHAT IN-CHAT ADS */
.chat-ad-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:6px 0 }
.chat-ad-card { background:#fff; border:1px solid #ECEFF1; border-radius:16px; overflow:hidden; cursor:pointer; transition:0.3s; box-shadow:0 2px 8px rgba(0,0,0,0.04) }
.chat-ad-card:hover { transform:translateY(-2px); border-color:var(--spring-green); box-shadow:0 6px 16px rgba(124,179,66,0.12) }
.chat-ad-img { width:100%; height:72px; background-size:cover; background-position:center }
.chat-ad-body { padding:8px 10px }
.chat-ad-brand { font-size:9px; font-weight:800; color:#90A4AE; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:2px }
.chat-ad-title { font-size:12px; font-weight:800; color:var(--text-dark); margin-bottom:2px; line-height:1.2 }
.chat-ad-price { font-size:11px; font-weight:700; color:var(--spring-green) }
.chat-ad-wide { background:linear-gradient(135deg,#0B101E,#1a2744); border-radius:16px; padding:14px 16px; display:flex; align-items:center; justify-content:space-between; cursor:pointer; transition:0.3s; margin:6px 0 }
.chat-ad-wide:hover { transform:translateY(-2px); box-shadow:0 8px 20px rgba(0,0,0,0.15) }
.chat-section-lbl { font-size:10px; font-weight:800; color:#90A4AE; text-transform:uppercase; letter-spacing:0.12em; margin:12px 0 6px; display:flex; align-items:center; gap:6px }
.chat-section-lbl::after { content:""; flex:1; height:1px; background:#ECEFF1 }
.chat-suggest-row { display:flex; gap:8px; overflow-x:auto; padding:2px 0 8px; scrollbar-width:none }
.chat-suggest-row::-webkit-scrollbar { display:none }
.chat-suggest-pill { flex-shrink:0; background:#F1F8E9; border:1px solid rgba(124,179,66,0.2); border-radius:20px; padding:7px 14px; font-size:12px; font-weight:700; color:var(--spring-green); cursor:pointer; white-space:nowrap; transition:0.2s }
.chat-suggest-pill:hover { background:var(--spring-green); color:#fff }

/* SEARCH OV */
.s-ov { position: fixed; inset: 0; z-index: 500; background: rgba(255,255,255,0.92); backdrop-filter: blur(24px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s }
.s-ov.on { opacity: 1; pointer-events: all }
.s-spin { width: 64px; height: 64px; border-radius: 50%; border: 3px solid #F1F8E9; border-top-color: var(--spring-green); animation: spin 1s cubic-bezier(0.5, 0, 0.5, 1) infinite }
@keyframes spin { to { transform: rotate(360deg) } }
.s-lbl { font-family: "Playfair Display", serif; font-size: 24px; font-weight: 900; color: var(--text-dark) }
.sstep { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #B0BEC5; font-weight: 500 }
.sstep .sd { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: #ECEFF1 }
.sstep.done { color: var(--spring-green) } .sstep.done .sd { background: var(--spring-green) }
.sstep.act { color: var(--text-dark) } .sstep.act .sd { background: var(--cherry-pink); animation: blink 1.2s infinite }

/* LANGUAGE SWITCHER */
.lang-bar { display: flex; gap: 8px; justify-content: center; padding: 10px 0; overflow-x: auto; scrollbar-width: none; align-items: center }
.lang-bar::-webkit-scrollbar { display: none }
.lang-chip { background: transparent; border: 1px solid rgba(124, 179, 66, 0.2); border-radius: 8px; padding: 6px 10px; font-size: 11px; font-weight: 800; color: #546E7A; cursor: pointer; transition: 0.2s; white-space: nowrap }
.lang-chip:hover { border-color: var(--spring-green); color: var(--spring-green) }
.lang-chip.act { background: var(--spring-green); color: #fff; border-color: var(--spring-green); box-shadow: 0 4px 10px rgba(124, 179, 66, 0.2) }

/* CHAT FRAMING */
.inp-bar { padding: 18px 20px 36px; background: #fff; z-index: 20; border-top: 1px solid #ECEFF1; box-shadow: 0 -10px 30px rgba(0,0,0,0.03) }
.msg-t { font-size: 10px; color: #B0BEC5; margin-top: 4px; font-weight: 700 }
.msg.rtl { align-items: flex-end }
.msg.ai.rtl { align-items: flex-start }
.inp-row { display: flex; gap: 12px; align-items: center; background: #F8FBF8; border: 2.5px solid #E0E4DE; border-radius: 20px; padding: 12px 14px 12px 22px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) }
.inp-row:focus-within { border-color: var(--spring-green); box-shadow: 0 4px 15px rgba(124,179,66,0.15); background: #fff }
.inp-f { flex: 1; background: transparent; border: none; outline: none; color: var(--text-dark); font-family: "Inter", sans-serif; font-size: 16px; font-weight: 600 }
.mic-btn { width: 50px; height: 50px; border-radius: 16px; background: #fff; border: 1.5px solid #ECEFF1; cursor: pointer; color: #B0BEC5; display: flex; align-items: center; justify-content: center; font-size: 22px; transition: 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.04) }
.mic-btn.on { background: var(--cherry-pink); color: #fff; border-color: var(--cherry-pink); animation: speakP 1.5s infinite }
@keyframes speakP { 0%, 100% { transform: scale(1) } 50% { transform: scale(1.1) } }
.send-btn { width: 50px; height: 50px; border-radius: 16px; background: var(--spring-green); border: none; cursor: pointer; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 4px 12px rgba(124,179,66,0.3) }
.home-bar { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 430px; z-index: 100; padding: 12px 16px 32px; background: linear-gradient(to top, #fff 70%, transparent) }
/* PRIVACY */
.priv{max-width:740px;margin:0 auto;padding:106px 28px 72px}
.priv h1{font-family:"Playfair Display",serif;font-size:42px;font-weight:900;margin-bottom:6px}
.priv-date{font-size:11px;color:rgba(255,255,255,.35);margin-bottom:44px}
.priv-sec{margin-bottom:26px}
.priv-sec h2{font-size:16px;font-weight:700;color:var(--gold-l);margin-bottom:7px}
.priv-sec p{font-size:13px;color:rgba(255,255,255,.55);line-height:1.9}
/* RESPONSIVE */
@media(max-width:860px){
  .nav{padding:0 18px}.nav-links{display:none}
  .sec,.how-sec{padding:68px 18px}.stats{gap:28px;padding:22px 18px}
  .svc-grid{grid-template-columns:1fr 1fr}.steps{grid-template-columns:1fr}
  .dest-grid{grid-template-columns:1fr}.dest-main{height:280px;grid-row:auto}
  footer{padding:44px 18px 22px}.ft{flex-direction:column}.partners{padding:44px 18px}
}
@media(max-width:480px){
  .hero-btns{flex-direction:column;align-items:stretch; gap: 10px; }
  .btn-gold,.btn-out{justify-content:center}
}

/* ADMIN DASHBOARD */
.modal { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.85); backdrop-filter: blur(12px); align-items: center; justify-content: center; padding: 20px }
.modal.open { display: flex }
.modal-c { background: #fff; width: 100%; max-width: 650px; border-radius: 32px; padding: 0; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.4); overflow: hidden; display: flex; flex-direction: column; max-height: 90vh }
.adm-side { width: 100%; background: #F8FBF8; border-bottom: 1px solid #ECEFF1; display: flex; padding: 20px 30px; gap: 20px }
.adm-tab { padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 700; color: #90A4AE; cursor: pointer; transition: 0.2s }
.adm-tab.active { background: var(--spring-green); color: #fff; box-shadow: 0 4px 12px rgba(124, 179, 66, 0.2) }
.adm-body { padding: 30px; overflow-y: auto; flex: 1 }
.modal-h { font-family: "Playfair Display", serif; font-size: 28px; font-weight: 900; color: var(--text-dark); margin-bottom: 4px }
.modal-p { font-size: 13px; color: #78909C; margin-bottom: 24px }
.adm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px }
.adm-box { background: #FDFEFE; border: 1px solid #ECEFF1; border-radius: 16px; padding: 16px; transition: 0.2s }
.adm-box:hover { border-color: var(--spring-green); transform: translateY(-2px) }
.adm-lbl { font-size: 10px; font-weight: 800; color: #B0BEC5; text-transform: uppercase; margin-bottom: 6px; letter-spacing: 0.05em }
.adm-val { font-size: 16px; font-weight: 800; color: var(--text-dark) }
.adm-val.green { color: var(--spring-green) }
.adm-list { display: flex; flex-direction: column; gap: 10px; margin-top: 10px }
.adm-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: #fff; border: 1px solid #F1F3F4; border-radius: 12px; font-size: 13px }
.adm-inp { width: 100%; padding: 12px 20px; border-radius: 12px; border: 1px solid #EEE; margin-bottom: 12px; font-size: 14px; outline: none }
.adm-inp:focus { border-color: var(--spring-green) }
.adm-btn { width: 100%; background: var(--text-dark); color: #fff; padding: 14px; border-radius: 12px; border: none; font-weight: 700; cursor: pointer; transition: 0.2s }
.adm-btn:hover { background: #000; transform: translateY(-2px) }
.close-modal { position: absolute; top: 24px; right: 24px; cursor: pointer; color: #B0BEC5; z-index: 10 }
</style>
