/* =============================================
   JOYRIDE IN ROMANIA — SHARED STYLESHEET v2
   ============================================= */
:root {
  --orange: #E8621A;
  --orange-light: #F5894D;
  --orange-pale: #FFF0E6;
  --orange-dark: #B84A0E;
  --yellow: #F5C800;
  --cream: #FFFBF7;
  --warm-gray: #F5F0EA;
  --text: #1A1208;
  --text-mid: #5C4A35;
  --text-light: #9C8870;
  --white: #FFFFFF;
  --border: rgba(232,98,26,0.15);
  --shadow: 0 4px 24px rgba(232,98,26,0.12);
  --radius: 16px;
  --radius-sm: 8px;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; background:var(--cream); color:var(--text); line-height:1.6; overflow-x:hidden; }

/* ---- NAV ---- */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(255,251,247,0.97); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  height:66px; padding:0 2.5rem;
  display:flex; align-items:center; justify-content:space-between;
  transition:box-shadow .3s;
}
nav.scrolled { box-shadow:0 2px 20px rgba(0,0,0,.08); }

/* Logo with image */
.nav-logo {
  display:flex; align-items:center; gap:10px;
  text-decoration:none; flex-shrink:0;
}
.nav-logo img {
  width:44px; height:44px; border-radius:50%; object-fit:cover;
  border:2px solid var(--yellow);
}
.nav-logo-text {
  font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700;
  color:var(--orange); letter-spacing:-0.02em; line-height:1.1;
}
.nav-logo-text span { color:var(--text); font-size:0.72rem; display:block; font-weight:400; letter-spacing:0.04em; font-family:'DM Sans',sans-serif; }

.nav-links { display:flex; align-items:center; gap:1.6rem; list-style:none; }
.nav-links > li { position:relative; }
.nav-links a { color:var(--text-mid); text-decoration:none; font-size:0.86rem; font-weight:500; transition:color .2s; display:flex; align-items:center; gap:3px; }
.nav-links a:hover { color:var(--orange); }
.nav-cta { background:var(--orange) !important; color:white !important; padding:.42rem 1.1rem; border-radius:50px; }
.nav-cta:hover { background:var(--orange-dark) !important; }

/* Dropdown */
.dropdown { display:none; position:absolute; top:calc(100% + 10px); left:-12px; background:var(--white); border:1px solid var(--border); border-radius:var(--radius-sm); box-shadow:0 8px 32px rgba(0,0,0,.12); min-width:230px; list-style:none; padding:6px 0; z-index:200; }
.has-dropdown:hover .dropdown { display:block; }
.dropdown li a { padding:.55rem 1rem; font-size:.83rem; color:var(--text-mid); display:flex; align-items:center; gap:8px; white-space:nowrap; }
.dropdown li a:hover { background:var(--orange-pale); color:var(--orange); }

.nav-right { display:flex; align-items:center; gap:.8rem; }
.lang-switcher { display:flex; gap:4px; }
.lang-btn { background:none; border:1px solid var(--border); border-radius:4px; padding:3px 6px; font-size:.68rem; font-weight:600; color:var(--text-mid); cursor:pointer; transition:all .2s; font-family:'DM Sans',sans-serif; letter-spacing:.04em; }
.lang-btn.active,.lang-btn:hover { background:var(--orange); color:white; border-color:var(--orange); }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.hamburger span { display:block; width:22px; height:2px; background:var(--text); border-radius:2px; transition:all .3s; }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu { display:none; position:fixed; top:66px; left:0; right:0; bottom:0; background:var(--cream); z-index:99; flex-direction:column; overflow-y:auto; }
.mobile-menu.open { display:flex; }
.mobile-menu-links { flex:1; padding:1.2rem 1.5rem 1rem; display:flex; flex-direction:column; }
.mobile-section-label { font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--text-light); padding:.6rem 0 .3rem; }
.mobile-divider { height:1px; background:var(--border); margin:.7rem 0; }
.mobile-menu-links a { padding:.7rem 0; font-size:.95rem; font-weight:500; color:var(--text); text-decoration:none; border-bottom:1px solid rgba(232,98,26,.07); display:flex; align-items:center; gap:8px; }
.mobile-menu-links a:hover { color:var(--orange); }
.mobile-cta { background:var(--orange); color:white !important; border-radius:50px; padding:.8rem 1.5rem !important; margin-top:1rem; text-align:center; justify-content:center; border-bottom:none !important; font-weight:600 !important; }
.mobile-menu-bottom { padding:1.2rem 1.5rem; border-top:1px solid var(--border); background:var(--white); }
.mobile-lang { display:flex; gap:5px; margin-bottom:1rem; flex-wrap:wrap; }
.mobile-social { display:flex; gap:10px; }
.msoc-btn { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; text-decoration:none; color:white; transition:transform .2s,opacity .2s; flex-shrink:0; }
.msoc-btn:hover { transform:scale(1.08); }
.msoc-btn.fb { background:#1877F2; }
.msoc-btn.ig { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.msoc-btn.wa { background:#25D366; }
.msoc-btn.phone { background:var(--orange); }

/* ---- HERO ---- */
.hero { min-height:100vh; display:flex; align-items:center; padding:120px 2rem 80px; position:relative; overflow:hidden; }
.hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(26,18,8,.62) 0%,rgba(184,74,14,.38) 100%); }
.hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:100px; background:linear-gradient(to bottom,transparent,var(--cream)); }
.hero-content { max-width:780px; margin:0 auto; text-align:center; color:white; position:relative; z-index:1; }
.hero-badge { display:inline-block; background:rgba(255,255,255,.16); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.28); border-radius:50px; padding:.4rem 1.2rem; font-size:.78rem; font-weight:500; letter-spacing:.06em; text-transform:uppercase; margin-bottom:1.5rem; }
.hero h1 { font-family:'Playfair Display',serif; font-size:clamp(2.4rem,6vw,4.2rem); font-weight:700; line-height:1.1; margin-bottom:1.2rem; letter-spacing:-.02em; }
.hero h1 em { color:#FFB885; font-style:normal; }
.hero p { font-size:clamp(.95rem,2vw,1.15rem); opacity:.9; max-width:580px; margin:0 auto 2.5rem; font-weight:300; }
.hero-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.btn-primary { background:var(--orange); color:white; padding:.85rem 2rem; border-radius:50px; text-decoration:none; font-weight:600; font-size:.95rem; border:none; cursor:pointer; transition:all .25s; display:inline-flex; align-items:center; gap:6px; }
.btn-primary:hover { background:var(--orange-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(232,98,26,.45); }
.btn-whatsapp { background:#25D366; color:white; padding:.85rem 1.8rem; border-radius:50px; text-decoration:none; font-weight:600; font-size:.95rem; display:inline-flex; align-items:center; gap:8px; transition:all .25s; }
.btn-whatsapp:hover { background:#1da851; transform:translateY(-2px); box-shadow:0 8px 24px rgba(37,211,102,.45); }
.btn-outline { background:rgba(255,255,255,.14); backdrop-filter:blur(6px); color:white; padding:.85rem 1.8rem; border-radius:50px; text-decoration:none; font-weight:500; font-size:.95rem; border:1px solid rgba(255,255,255,.4); transition:all .25s; display:inline-flex; align-items:center; gap:6px; }
.btn-outline:hover { background:rgba(255,255,255,.24); }
.hero-trust { display:flex; gap:1.8rem; justify-content:center; flex-wrap:wrap; margin-top:3rem; }
.trust-item { font-size:.82rem; opacity:.9; display:flex; align-items:center; gap:6px; }

/* ---- PAGE HERO ---- */
.page-hero { min-height:52vh; display:flex; align-items:flex-end; padding:100px 2rem 60px; position:relative; overflow:hidden; }
.page-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(to bottom,rgba(26,18,8,.42) 0%,rgba(26,18,8,.75) 100%); }
.page-hero-content { max-width:700px; color:white; position:relative; z-index:1; }
.breadcrumb { font-size:.76rem; opacity:.72; margin-bottom:.8rem; }
.breadcrumb a { color:white; text-decoration:none; }
.breadcrumb a:hover { text-decoration:underline; }
.page-hero-content h1 { font-family:'Playfair Display',serif; font-size:clamp(2rem,5vw,3.4rem); font-weight:700; line-height:1.1; margin-bottom:.8rem; }
.page-hero-content p { font-size:1.05rem; opacity:.88; max-width:520px; font-weight:300; }

/* ---- SECTIONS ---- */
.section-white { background:var(--white); padding:80px 2rem; }
.section-warm { background:var(--warm-gray); padding:80px 2rem; }
.section-orange-pale { background:var(--orange-pale); padding:80px 2rem; }
.container { max-width:1100px; margin:0 auto; }
.section-label { font-size:.74rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--orange); margin-bottom:.5rem; }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,4vw,2.8rem); font-weight:700; line-height:1.15; color:var(--text); margin-bottom:1rem; letter-spacing:-.02em; }
.section-sub { color:var(--text-mid); font-size:1rem; max-width:580px; font-weight:300; }

/* ---- SERVICE CARDS ---- */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(255px,1fr)); gap:1.5rem; margin-top:3rem; }
.service-card { background:var(--cream); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; text-decoration:none; color:var(--text); transition:all .3s; display:flex; flex-direction:column; }
.service-card:hover { box-shadow:var(--shadow); transform:translateY(-4px); }
.service-card-img { height:180px; overflow:hidden; }
.service-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.service-card:hover .service-card-img img { transform:scale(1.06); }
.service-card-body { padding:1.5rem; flex:1; display:flex; flex-direction:column; }
.service-icon { font-size:1.5rem; margin-bottom:.6rem; }
.service-card h3 { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; margin-bottom:.5rem; }
.service-card p { color:var(--text-mid); font-size:.87rem; line-height:1.6; font-weight:300; flex:1; }
.card-link { display:inline-block; margin-top:1.2rem; color:var(--orange); font-weight:600; font-size:.83rem; }

/* ---- DESTINATIONS GRID ---- */
.destinations-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:1rem; margin-top:3rem; }
.dest-card { border-radius:var(--radius); overflow:hidden; position:relative; height:240px; cursor:pointer; transition:transform .3s; text-decoration:none; display:block; }
.dest-card:hover { transform:scale(1.025); }
.dest-card img { width:100%; height:100%; object-fit:cover; transition:transform .4s; display:block; }
.dest-card:hover img { transform:scale(1.06); }
.dest-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(26,18,8,.84) 0%,rgba(26,18,8,.06) 60%); display:flex; flex-direction:column; justify-content:flex-end; padding:1.4rem; }
.dest-overlay h3 { color:white; font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; }
.dest-overlay span { color:#FFB885; font-size:.76rem; font-weight:500; margin-top:3px; display:block; }

/* ---- WHY GRID ---- */
.why-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:1.5rem; margin-top:3rem; }
.why-item { text-align:center; padding:2rem 1.5rem; border:1px solid var(--border); border-radius:var(--radius); background:var(--cream); }
.why-num { font-family:'Playfair Display',serif; font-size:2.8rem; font-weight:700; color:var(--orange); line-height:1; margin-bottom:.4rem; }
.why-item h4 { font-weight:600; margin-bottom:.4rem; font-size:.93rem; }
.why-item p { font-size:.82rem; color:var(--text-mid); font-weight:300; }

/* ---- REVIEWS ---- */
.reviews-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:1.5rem; margin-top:3rem; }
.review-card { background:var(--white); border-radius:var(--radius); padding:1.8rem; border:1px solid var(--border); }
.stars { color:var(--orange); font-size:1rem; letter-spacing:2px; margin-bottom:1rem; }
.review-card p { font-size:.88rem; color:var(--text-mid); line-height:1.7; font-style:italic; font-weight:300; margin-bottom:1.2rem; }
.reviewer { display:flex; align-items:center; gap:10px; }
.reviewer-avatar { width:38px; height:38px; border-radius:50%; background:var(--orange-pale); display:flex; align-items:center; justify-content:center; font-weight:600; font-size:.82rem; color:var(--orange-dark); flex-shrink:0; }
.reviewer-name { font-weight:600; font-size:.86rem; }
.reviewer-origin { font-size:.74rem; color:var(--text-light); }

/* ---- BOOKING ---- */
.booking-wrapper { display:grid; grid-template-columns:1fr 1.5fr; gap:4rem; align-items:start; margin-top:3rem; }
.booking-info h3 { font-family:'Playfair Display',serif; font-size:1.5rem; margin-bottom:1rem; }
.booking-info > p { color:var(--text-mid); font-size:.9rem; line-height:1.7; font-weight:300; }
.contact-methods { margin-top:2rem; display:flex; flex-direction:column; gap:.75rem; }
.contact-method { display:flex; align-items:center; gap:12px; padding:.82rem 1.1rem; background:var(--cream); border-radius:var(--radius-sm); border:1px solid var(--border); text-decoration:none; color:var(--text); transition:all .2s; }
.contact-method:hover { border-color:var(--orange); background:var(--orange-pale); }
.cm-icon { font-size:1.2rem; }
.cm-label { font-weight:600; font-size:.82rem; }
.cm-val { color:var(--text-mid); font-size:.8rem; }
.booking-form-wrap { background:var(--cream); border:1px solid var(--border); border-radius:var(--radius); padding:2.5rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { display:flex; flex-direction:column; gap:5px; margin-bottom:.9rem; }
.form-group label { font-size:.76rem; font-weight:600; color:var(--text-mid); letter-spacing:.04em; text-transform:uppercase; }
.form-group input,.form-group select,.form-group textarea { padding:.7rem 1rem; border:1.5px solid rgba(232,98,26,.2); border-radius:var(--radius-sm); font-family:'DM Sans',sans-serif; font-size:.9rem; background:var(--white); color:var(--text); transition:border-color .2s; outline:none; width:100%; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(232,98,26,.1); }
.form-group textarea { resize:vertical; min-height:85px; }
.form-submit { width:100%; background:var(--orange); color:white; padding:.95rem; border-radius:50px; border:none; font-family:'DM Sans',sans-serif; font-size:.95rem; font-weight:600; cursor:pointer; transition:all .25s; margin-top:.4rem; }
.form-submit:hover { background:var(--orange-dark); transform:translateY(-1px); box-shadow:0 6px 20px rgba(232,98,26,.35); }
.form-note { font-size:.74rem; color:var(--text-light); text-align:center; margin-top:.75rem; }

/* ---- INSTAGRAM ---- */
.insta-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:2rem; flex-wrap:wrap; gap:1rem; }
.insta-handle { display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); font-weight:600; font-size:.93rem; }
.insta-icon { width:38px; height:38px; background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.insta-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(145px,1fr)); gap:8px; }
.insta-cell { aspect-ratio:1; border-radius:var(--radius-sm); overflow:hidden; }
.insta-cell img { width:100%; height:100%; object-fit:cover; transition:transform .35s; display:block; }
.insta-cell:hover img { transform:scale(1.08); }

/* ---- FOOTER ---- */
footer { background:var(--text); color:rgba(255,255,255,.72); }
.footer-inner { max-width:1200px; margin:0 auto; padding:60px 2.5rem 30px; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand-top { display:flex; align-items:center; gap:12px; margin-bottom:1rem; }
.footer-logo-img { width:52px; height:52px; border-radius:50%; object-fit:cover; border:2px solid var(--yellow); }
.footer-logo { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:white; }
.footer-logo span { color:var(--orange-light); }
.footer-brand p { font-size:.82rem; line-height:1.7; font-weight:300; }
.footer-social { display:flex; gap:10px; margin-top:1.2rem; }
.fsoc { width:36px; height:36px; border:1px solid rgba(255,255,255,.2); border-radius:8px; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.75); text-decoration:none; transition:all .2s; }
.fsoc:hover { color:white; border-color:transparent; }
.fsoc.fb:hover { background:#1877F2; }
.fsoc.ig:hover { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743); }
.fsoc.wa:hover { background:#25D366; }
.footer-col h4 { color:white; font-weight:600; font-size:.82rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:1.2rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.55rem; }
.footer-col ul li a { color:rgba(255,255,255,.62); text-decoration:none; font-size:.82rem; transition:color .2s; font-weight:300; }
.footer-col ul li a:hover { color:var(--orange-light); }
.footer-bottom { padding-top:2rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; font-size:.76rem; }

/* ---- DETAIL PAGES ---- */
.detail-intro { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.detail-intro img { width:100%; border-radius:var(--radius); object-fit:cover; height:380px; }
.detail-intro-text h2 { font-family:'Playfair Display',serif; font-size:2rem; margin-bottom:1rem; }
.detail-intro-text p { color:var(--text-mid); font-size:.92rem; line-height:1.8; font-weight:300; margin-bottom:1rem; }
.feature-list { list-style:none; display:flex; flex-direction:column; gap:.65rem; margin:1.5rem 0; }
.feature-list li { display:flex; align-items:flex-start; gap:10px; font-size:.88rem; color:var(--text-mid); }
.feature-list li::before { content:'✓'; color:var(--orange); font-weight:700; margin-top:2px; flex-shrink:0; }
.highlights-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1.2rem; margin-top:3rem; }
.highlight-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; transition:all .3s; }
.highlight-card:hover { box-shadow:var(--shadow); transform:translateY(-3px); }
.highlight-card img { width:100%; height:155px; object-fit:cover; display:block; }
.highlight-card-body { padding:1.1rem; }
.highlight-card h4 { font-family:'Playfair Display',serif; font-size:.98rem; margin-bottom:.35rem; }
.highlight-card p { font-size:.8rem; color:var(--text-mid); font-weight:300; line-height:1.55; }

/* Destination page hero stats */
.dest-stats { display:flex; gap:2rem; flex-wrap:wrap; margin-top:1.5rem; }
.dest-stat { display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.15); border-radius:50px; padding:.3rem .9rem; font-size:.8rem; backdrop-filter:blur(6px); border:1px solid rgba(255,255,255,.25); }

/* Timeline */
.timeline { margin-top:2rem; display:flex; flex-direction:column; }
.timeline-item { display:flex; gap:1.5rem; padding:1.4rem 0; border-bottom:1px solid var(--border); }
.timeline-item:last-child { border-bottom:none; }
.timeline-time { min-width:70px; font-weight:700; color:var(--orange); font-size:.86rem; padding-top:3px; }
.timeline-content h4 { font-weight:600; margin-bottom:.25rem; font-size:.95rem; }
.timeline-content p { font-size:.85rem; color:var(--text-mid); font-weight:300; }

/* Price table */
.price-table { width:100%; border-collapse:collapse; margin-top:2rem; border-radius:var(--radius); overflow:hidden; }
.price-table th { background:var(--orange); color:white; padding:.85rem 1.2rem; text-align:left; font-size:.83rem; font-weight:600; }
.price-table td { padding:.8rem 1.2rem; border-bottom:1px solid var(--border); font-size:.86rem; color:var(--text-mid); }
.price-table tr:last-child td { border-bottom:none; }
.price-table tr:nth-child(even) td { background:var(--cream); }
.price-val { font-weight:700; color:var(--orange); font-size:.95rem !important; }

/* CTA strip */
.cta-strip { background:var(--orange); color:white; border-radius:var(--radius); padding:3rem; text-align:center; margin-top:3rem; }
.cta-strip h3 { font-family:'Playfair Display',serif; font-size:2rem; margin-bottom:.8rem; }
.cta-strip p { opacity:.9; margin-bottom:2rem; font-weight:300; }
.cta-strip-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.btn-white { background:white; color:var(--orange); padding:.85rem 2rem; border-radius:50px; text-decoration:none; font-weight:700; font-size:.93rem; transition:all .2s; display:inline-flex; align-items:center; gap:6px; }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,.2); }
.btn-white-outline { background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.5); color:white; padding:.85rem 2rem; border-radius:50px; text-decoration:none; font-weight:500; font-size:.93rem; transition:all .2s; display:inline-flex; align-items:center; gap:8px; }
.btn-white-outline:hover { background:rgba(255,255,255,.28); }

/* Photo gallery */
.photo-gallery { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:.8rem; margin-top:2rem; }
.photo-gallery img { width:100%; height:200px; object-fit:cover; border-radius:var(--radius-sm); display:block; transition:transform .35s; cursor:zoom-in; }
.photo-gallery img:hover { transform:scale(1.02); }

/* ---- FLOATING WA ---- */
.whatsapp-float { position:fixed; bottom:24px; right:24px; z-index:200; width:58px; height:58px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,.5); text-decoration:none; transition:all .25s; }
.whatsapp-float:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,.6); }

/* ---- LANGUAGE ---- */
/* lang system removed */

/* ---- ANIMATIONS ---- */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.hero-content > * { opacity:0; animation:fadeUp .7s ease forwards; }
.hero-badge{animation-delay:.1s} .hero h1{animation-delay:.25s} .hero p{animation-delay:.4s} .hero-btns{animation-delay:.55s} .hero-trust{animation-delay:.7s}
.fade-in { opacity:0; transform:translateY(18px); transition:opacity .55s ease,transform .55s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ---- RESPONSIVE ---- */
@media(max-width:900px){
  .nav-links{display:none}
  .hamburger{display:flex}
  .booking-wrapper{grid-template-columns:1fr;gap:2rem}
  .detail-intro{grid-template-columns:1fr;gap:2rem}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
}
@media(max-width:600px){
  .form-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  nav{padding:0 1.2rem}
  .section-white,.section-warm,.section-orange-pale{padding:56px 1.2rem}
  .hero{padding:108px 1.2rem 64px}
  .hero-trust{gap:1rem}
  .cta-strip{padding:2rem 1.5rem}
  .page-hero{padding:90px 1.2rem 48px}
  .lang-switcher{display:none}
}

/* ---- LOGO IMAGE IN NAV ---- */
.nav-logo-img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
  flex-shrink: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.nav-logo-text span { color: var(--text); display: block; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }

/* ---- DESTINATIONS HUB PAGE ---- */
.dest-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.dest-hub-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}
.dest-hub-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.18); }
.dest-hub-card img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s; }
.dest-hub-card:hover img { transform: scale(1.05); }
.dest-hub-body {
  background: var(--white);
  padding: 1.2rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.dest-hub-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 0.3rem; color: var(--text); }
.dest-hub-body .dest-meta { font-size: 0.78rem; color: var(--orange); font-weight: 600; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.06em; }
.dest-hub-body p { font-size: 0.84rem; color: var(--text-mid); font-weight: 300; line-height: 1.6; }
.dest-hub-card .dest-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: white;
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* ---- DESTINATION DETAIL PAGE ---- */
.dest-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
}
.dest-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-gallery img:first-child { grid-row: 1 / 3; }
.info-box {
  background: var(--orange-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}
.info-box h4 { font-weight: 600; margin-bottom: 0.8rem; color: var(--text); font-size: 0.95rem; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.info-item { display: flex; flex-direction: column; gap: 3px; }
.info-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); }
.info-value { font-size: 0.9rem; font-weight: 500; color: var(--text); }

@media (max-width: 600px) {
  .dest-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dest-gallery img:first-child { grid-row: auto; }
}

/* ---- PAYMENT STRIP ---- */
.payment-strip {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.85rem 1.2rem;
  margin: 1.5rem 0; font-size: 0.82rem;
}
.pay-label { font-weight: 700; color: var(--text-mid); white-space: nowrap; }
.pay-method {
  background: var(--orange-pale); color: var(--orange-dark);
  border: 1px solid rgba(232,98,26,0.2); border-radius: 50px;
  padding: 4px 12px; font-weight: 600; white-space: nowrap; font-size: 0.78rem;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start;
}
.contact-map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.contact-map-wrap iframe { width: 100%; height: 380px; display: block; border: none; }
.contact-full-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-full-method {
  display: flex; align-items: center; gap: 14px;
  padding: 1rem 1.2rem; background: var(--cream);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  text-decoration: none; color: var(--text); transition: all 0.2s;
}
.contact-full-method:hover { border-color: var(--orange); background: var(--orange-pale); transform: translateX(4px); }
.cfm-icon { font-size: 1.5rem; flex-shrink: 0; }
.cfm-label { font-weight: 700; font-size: 0.88rem; margin-bottom: 2px; }
.cfm-value { font-size: 0.82rem; color: var(--text-mid); }
.address-box {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem;
}
.address-box h4 { font-weight: 600; margin-bottom: 0.8rem; font-size: 0.9rem; }
.address-box address { font-style: normal; color: var(--text-mid); font-size: 0.88rem; line-height: 1.7; }
.address-box a { color: var(--orange); text-decoration: none; font-weight: 500; }

/* ---- ABOUT PAGE ---- */
.about-hero-text { max-width: 680px; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.about-story img { width: 100%; border-radius: var(--radius); height: 380px; object-fit: cover; }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 3rem; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.value-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.value-card h4 { font-weight: 600; margin-bottom: 0.4rem; font-size: 0.95rem; }
.value-card p { font-size: 0.84rem; color: var(--text-mid); font-weight: 300; line-height: 1.6; }

/* ---- FAQ PAGE ---- */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.2rem 0; font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q:hover { color: var(--orange); }
.faq-chevron { color: var(--orange); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  padding: 0;
}
.faq-a-inner { padding: 0 0 1.2rem; color: var(--text-mid); font-size: 0.9rem; line-height: 1.8; font-weight: 300; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }

/* ---- BLOG/GUIDE PAGE ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--text); transition: all 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover img { transform: scale(1.04); }
.blog-card-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 0.5rem; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.3; }
.blog-card p { font-size: 0.83rem; color: var(--text-mid); font-weight: 300; line-height: 1.6; flex: 1; }
.blog-card .read-more { font-size: 0.8rem; color: var(--orange); font-weight: 600; margin-top: 1rem; }

/* ---- SCHEMA/SEO hidden ---- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---- PAYMENT STYLES ---- */
.payment-info-box {
  background: var(--orange-pale); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.2rem; margin: 1.5rem 0;
}
.pib-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.6rem; color: var(--orange-dark); }
.pib-cards { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0.5rem; }
.pib-cards span {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 3px 10px; font-size: 0.78rem; font-weight: 600; color: var(--text-mid);
}
.pib-note { font-size: 0.78rem; color: var(--text-light); font-style: italic; }

.payment-strip {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  color: white; padding: 0.7rem 2.5rem;
}
.payment-strip-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; font-size: 0.82rem; }
.ps-label { font-weight: 600; opacity: 0.9; white-space: nowrap; }
.ps-icons { display: flex; gap: 6px; flex-wrap: wrap; }
.ps-card { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.35); border-radius: 5px; padding: 2px 9px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.03em; }

.fp-badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 5px; padding: 2px 8px; font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.85); }

/* ---- DROPDOWN WIDE ---- */
.dest-dd { min-width: 260px; column-count: 2; column-gap: 0; }
.dest-dd li { break-inside: avoid; }

/* ---- FAQ SECTION ---- */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.1rem 0; font-family: "DM Sans", sans-serif; font-size: 0.95rem;
  font-weight: 600; color: var(--text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q::after { content: "+"; font-size: 1.3rem; color: var(--orange); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.1rem; font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.faq-item.open .faq-a { display: block; }

/* ---- REVIEW STARS LARGE ---- */
.rating-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--orange-pale); border: 1px solid var(--border); border-radius: 50px; padding: 0.3rem 0.9rem; font-size: 0.82rem; font-weight: 600; color: var(--orange-dark); }

/* ---- GOOGLE MAP EMBED ---- */
.gmap-embed { width: 100%; height: 300px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 2rem; }
.gmap-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FORM AJAX SUCCESS / ERROR — v3
   ============================================================ */

.form-ajax-result { min-height: 0; }

.form-success-box {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 2px solid #22c55e;
  border-radius: var(--radius);
  animation: popIn 0.45s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popIn {
  from { opacity:0; transform: scale(0.88) translateY(16px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.fsb-icon  { font-size: 3.2rem; margin-bottom: 0.6rem; line-height: 1; }
.fsb-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.fsb-body  { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; font-weight: 300; margin-bottom: 1.2rem; }
.fsb-wa    { font-size: 0.88rem !important; padding: 0.65rem 1.4rem !important; }
.fsb-reset {
  display: block; margin: 1rem auto 0; background: none;
  border: 1.5px solid var(--border); border-radius: 50px;
  padding: 0.55rem 1.4rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; color: var(--text-light); cursor: pointer;
  transition: all 0.2s;
}
.fsb-reset:hover { border-color: var(--orange); color: var(--orange); }

.form-error-box {
  background: #fef2f2; border: 1.5px solid #fca5a5;
  border-radius: var(--radius-sm); padding: 1rem 1.2rem;
  font-size: 0.88rem; color: #991b1b; line-height: 1.6;
  animation: fadeUp 0.3s ease both;
}
.form-error-box a { color: var(--orange); font-weight: 600; }

/* Sending state */
.form-submit:disabled {
  background: var(--text-light) !important;
  transform: none !important;
  box-shadow: none !important;
  cursor: not-allowed;
}

/* Form note enhanced */
.form-note {
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.9rem;
  line-height: 1.6;
}
.form-note strong { color: var(--orange); }

/* Response time badge on form */
.response-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 50px; padding: 0.35rem 0.9rem;
  font-size: 0.78rem; font-weight: 600; color: #15803d;
  margin-bottom: 1.2rem;
}

/* ============================================================
   MOBILE — comprehensive improvements
   ============================================================ */

/* Full-screen mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 66px; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 99;
  flex-direction: column; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }

/* Touch-friendly tap targets */
@media (max-width: 900px) {
  .mobile-menu-links a {
    min-height: 48px;
    display: flex; align-items: center;
  }
  .form-group input, .form-group select, .form-group textarea {
    font-size: 16px !important; /* prevents iOS zoom */
  }
  .btn-primary, .btn-whatsapp, .btn-outline {
    min-height: 48px;
    padding: 0.9rem 1.8rem;
  }
  .service-card-img { height: 160px; }
  .dest-card { height: 200px; }
  .booking-wrapper { gap: 2rem; }
  .booking-form-wrap { padding: 1.5rem 1.2rem; }
  .hero { padding: 100px 1.2rem 60px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  nav { padding: 0 1rem; }
  .nav-logo-text { font-size: 1rem; }
  .nav-logo-img { width: 36px; height: 36px; }
  .hero-trust { gap: 0.7rem; }
  .trust-item { font-size: 0.75rem; }
  .section-white, .section-warm, .section-orange-pale { padding: 50px 1rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .detail-intro { grid-template-columns: 1fr; }
  .cta-strip { padding: 2rem 1rem; }
  .cta-strip h3 { font-size: 1.5rem; }
}

/* ============================================================
   SEO STRUCTURED CONTENT
   ============================================================ */

/* Breadcrumb visible */
.breadcrumb { font-size: 0.78rem; opacity: 0.75; margin-bottom: 0.8rem; }
.breadcrumb a { color: white; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb::after { display: none; }

/* Schema hidden helpers */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Print styles */
@media print {
  nav, .whatsapp-float, .mobile-menu, .payment-strip, footer { display: none !important; }
  .hero { min-height: auto; padding: 2rem; }
}

/* ---- NAV TAGLINE ---- */
.nav-tagline {
  display: block;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 1px;
  white-space: nowrap;
}


/* ---- Hide lang switcher ---- */
.lang-switcher, .mobile-lang, .lang-btn { display: none !important; }

/* ---- Dropdown hover fix — bridge gap + JS class ---- */
.has-dropdown { position: relative; }
.has-dropdown:hover > .dropdown,
.has-dropdown.dd-open > .dropdown { display: block; }
/* Invisible 10px bridge so mouse can travel from link to dropdown without it closing */
.has-dropdown > a::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
