/* =========================================================
   GREEK HILLS — Clean style.css (based on your Hotel Demo)
   - Blue motif
   - Mobile hamburger visible
   - Hero full view on mobile (no crop)
   ========================================================= */

/* -----------------------------
   Theme Variables
----------------------------- */
:root{
  --gh-blue:#0b4f8a;
  --gh-blue-dark:#083b67;
  --bg:#f5f9ff;
  --card:#ffffff;
  --text:#0b1220;
  --muted:rgba(11,18,32,.72);
  --line:rgba(11,18,32,.12);
  --shadow:0 18px 40px rgba(0,0,0,.10);
  --radius:18px;
}

/* -----------------------------
   Base
----------------------------- */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{ width:min(1140px, 92%); margin:0 auto; }
.container-fluid{ width:100%; padding:0; margin:0; }

/* -----------------------------
   Loader
----------------------------- */
.loader_bg{
  position:fixed; inset:0;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  z-index:9999;
}
.loader img{ width:80px; height:auto; }

/* -----------------------------
   Header
----------------------------- */
.header{
  position: sticky;
  top: 0;
  z-index: 9999;

  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(11,79,138,.16);
  padding: 12px 0;
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.logo img{ max-height:72px; width:auto; }

.navigation{
  display:flex;
  gap:18px;
  align-items:center;
}
.navigation a{
  color: var(--text);
  font-size:16px;
  padding:10px 6px;
  opacity:.9;
}
.navigation a:hover{ opacity:1; color: var(--gh-blue); }
.navigation a.active{ opacity:1; font-weight:700; color: var(--gh-blue); }

/* Mobile nav button (hamburger) */
.nav-toggle{
  display:none;
  width:44px; height:40px;
  border:1px solid rgba(11,79,138,.25);
  background: rgba(255,255,255,.55);
  border-radius:12px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  width:18px;
  background: var(--gh-blue);
  margin:4px auto;
  border-radius:99px;
}

/* -----------------------------
   Banner / Carousel
----------------------------- */
.banner_main{ position:relative; }

.carousel{
  position:relative;
  overflow:hidden;
  height: 100vh;
  min-height: 520px;
  background: var(--bg);
}
.carousel-track{
  display:flex;
  height:100%;
  transition: transform .55s ease;
}
.carousel-item{
  min-width:100%;
  height:100%;
}
.hero-img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position:center;
}

/* Controls */
.carousel-control{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:0;
  width:44px; height:44px;
  border-radius:50%;
  background: rgba(0,0,0,.40);
  color:#fff;
  font-size:34px;
  cursor:pointer;
  z-index:3;
}
.carousel-control.prev{ left:14px; }
.carousel-control.next{ right:14px; }
.carousel-control:hover{ background: rgba(0,0,0,.55); }

/* Dots */
.carousel-indicators{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:14px;
  display:flex;
  gap:8px;
  z-index:3;
}
.dot{
  width:10px; height:10px;
  border-radius:50%;
  border:2px solid #fff;
  background:transparent;
  cursor:pointer;
  opacity:.9;
}
.dot.is-active{ background:#fff; }

/* -----------------------------
   Booking overlay
----------------------------- */
.booking_ocline{
  position:absolute;
  left:0; right:0;
  bottom: 40px;
  z-index:2;
}

.book_room{
  width: min(520px, 100%);
  padding: 28px 28px 22px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}
.book_room h1{
  margin:0 0 14px;
  font-size: 32px;
  color:#fff;
  text-shadow: 0 12px 40px rgba(0,0,0,.55);
}

.book_now{ display:grid; gap:12px; }
.book-field span{
  display:block;
  font-weight:700;
  margin-bottom:6px;
  color: rgba(255,255,255,.9);
}

.date-wrap{ position:relative; }
.date_cua{
  position:absolute;
  left:10px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  opacity:.7;
}

.online_book{
  width:100%;
  padding: 14px 14px 14px 44px;
  border:1px solid rgba(255,255,255,.45);
  border-radius:10px;
  font-size:15px;
  background: rgba(255,255,255,0.92);
}

.book_btn{
  width:100%;
  border:0;
  background: var(--gh-blue);
  padding: 14px 16px;
  border-radius:12px;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
  color:#fff;
}
.book_btn:hover{ background: var(--gh-blue-dark); }
.book_note{ margin:0; font-size:13px; color: rgba(255,255,255,.86); }

/* -----------------------------
   Sections
----------------------------- */
.about, .our_room, .gallery, .blog, .contact{
  padding: 110px 0 70px;
  background: transparent;
}
.titlepage h2{
  margin:0 0 10px;
  font-size:34px;
  color: var(--gh-blue);
}
.titlepage p{ margin:0; color: var(--muted); line-height:1.6; }
.center{ text-align:center; margin-bottom: 28px; }

/* About */
.about-row{
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap:34px;
  align-items:center;
  padding: 0 24px;
}
.about-text .titlepage{ max-width: 540px; margin: 0 auto; }
.about-img figure{ margin:0; }
.about-img img{ border-radius: 14px; box-shadow: var(--shadow); }

.read_more{
  display:inline-block;
  margin-top:16px;
  background: var(--gh-blue);
  color:#fff;
  padding:10px 16px;
  border-radius:12px;
  font-weight:800;
}
.read_more:hover{ background: var(--gh-blue-dark); }

/* -----------------------------
   Rooms
----------------------------- */
.room-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.room{
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  overflow:hidden;
  background: var(--card);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.room_img{ position: relative; }
.room_img img{
  height:220px;
  width:100%;
  object-fit: cover;
}
.room_price{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(11,79,138,.92);
  color:#fff;
  display:inline-flex;
  gap:8px;
  align-items:baseline;
}
.room_price .price{ font-weight:900; }
.room_price .per{ opacity:.9; font-size:12px; }

.bed_room{ padding:14px 14px 16px; }
.bed_room h3{ margin:0 0 8px; font-size:18px; color: var(--gh-blue); }
.bed_room p{ margin:0; color: rgba(11,18,32,.78); line-height:1.5; }

/* -----------------------------
   Gallery
----------------------------- */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.gallery_img{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}
.gallery_img img{
  height:170px;
  width:100%;
  object-fit:cover;
}

/* -----------------------------
   Blog
----------------------------- */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.blog_box{
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}
.blog_img img{ height:220px; width:100%; object-fit:cover; }
.blog_room{ padding:14px 14px 18px; }
.blog_room h3{ margin:0 0 6px; }
.blog_room span{ display:block; color:#6d7a8a; font-size:13px; margin-bottom:8px; }
.blog_room p{ margin:0; color: rgba(11,18,32,.78); line-height:1.5; }

/* -----------------------------
   Contact
----------------------------- */
.contact-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}

.main_form{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  display:grid;
  gap:12px;
}
.contactus, .textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid rgba(0,0,0,.14);
  border-radius:10px;
  font-size:14px;
  background:#fff;
}
.send_btn{
  width:100%;
  border:0;
  background: var(--gh-blue);
  color:#fff;
  padding:12px 14px;
  border-radius:12px;
  font-weight:800;
  cursor:pointer;
}
.send_btn:hover{ background: var(--gh-blue-dark); }
.form_note{ margin:0; font-size:13px; color: rgba(11,18,32,.75); }

.map_main{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  background:#fff;
}
.map-responsive iframe{
  width:100%;
  height:100%;
  min-height: 340px;
  border:0;
  display:block;
}

/* -----------------------------
   Footer
----------------------------- */
.footer{
  background: var(--gh-blue-dark);
  color:#fff;
  padding: 44px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
  padding-bottom: 20px;
}
.footer h3{ margin:0 0 12px; }
.conta, .link_menu{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.conta a, .link_menu a{ color:#fff; opacity:.9; }
.conta a:hover, .link_menu a:hover{ opacity:1; }

.social_icon{
  display:flex;
  gap:10px;
  margin-top:12px;
}
.social_icon a{
  width:36px; height:36px;
  border-radius:50%;
  display:grid; place-items:center;
  background: rgba(255,255,255,.12);
  color:#fff;
  font-weight:800;
}

.bottom_form{ display:grid; gap:10px; }
.enter{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color:#fff;
}
.sub_btn{
  border:0;
  background: #ffffff;
  color: var(--gh-blue-dark);
  padding:12px 14px;
  border-radius:12px;
  font-weight:900;
  cursor:pointer;
}
.sub_btn:hover{ filter:brightness(.95); }

.copyright{
  border-top:1px solid rgba(255,255,255,.14);
  padding:14px 0;
  margin-top: 14px;
}
.copyright p{ margin:0; text-align:center; opacity:.9; }

/* -----------------------------
   Responsive
----------------------------- */
@media (max-width: 1000px){
  .room-grid{ grid-template-columns: 1fr 1fr; }
  .blog-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: 1fr 1fr 1fr; }
  .about-row{ grid-template-columns: 1fr; }

  .booking_ocline{
    position:relative;
    bottom:auto;
    padding: 18px 0 0;
  }

  .about, .our_room, .gallery, .blog, .contact{ padding: 70px 0 50px; }
}

@media (max-width: 720px){
  .nav-toggle{ display:block; }

  .navigation{
    position:absolute;
    right:4%;
    top:72px;
    width:min(340px, 92vw);
    background: rgba(255,255,255,.98);
    border:1px solid rgba(11,79,138,.18);
    border-radius:14px;
    padding:10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    z-index:10;
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
  }
  .navigation.open{ display:flex; }
  .navigation a{ padding:10px 10px; }

  .contact-row{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; }
  .room-grid, .blog-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }

  /* ✅ HERO FULL VIEW (NO CROP) ON MOBILE */
  .carousel,
  .carousel-track,
  .carousel-item{
    height:auto;
    min-height:0;
  }
  .hero-img{
    height:auto;
    object-fit: contain;
  }
}

/* ✅ Booking text visibility fix (was duplicated many times; keep one) */
.book_room h1{
  color: #0b1220 !important;
  text-shadow: none !important;
}
.book-field span{
  color: rgba(11,18,32,.80) !important;
}
.book_note{
  color: rgba(11,18,32,.75) !important;
}

/* =========================================
   GALLERY COLLAGE — FORCE FIX (no gaps)
========================================= */
#gallery .gallery-grid.collage{
  display:grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  grid-auto-rows: 95px !important;
  gap: 14px !important;
  margin-top: 18px !important;
  grid-auto-flow: dense !important;
  align-items: stretch !important;
}

#gallery .gallery-grid.collage a{
  display:block !important;
  height: 100% !important;
  border-radius: 18px !important;
  overflow:hidden !important;
  background:#fff !important;
  border:1px solid rgba(0,0,0,.10) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.08) !important;
}

#gallery .gallery-grid.collage img{
  width:100% !important;
  height:100% !important;
  object-fit: cover !important;
  display:block !important;
}

/* Mosaic placements */
#gallery .gallery-grid.collage .g1{ grid-column: 1 / span 6 !important;  grid-row: span 4 !important; }
#gallery .gallery-grid.collage .g2{ grid-column: 7 / span 6 !important;  grid-row: span 2 !important; }
#gallery .gallery-grid.collage .g3{ grid-column: 7 / span 3 !important;  grid-row: span 2 !important; }
#gallery .gallery-grid.collage .g4{ grid-column: 10 / span 3 !important; grid-row: span 2 !important; }
#gallery .gallery-grid.collage .g5{ grid-column: 1 / span 4 !important;  grid-row: span 2 !important; }
#gallery .gallery-grid.collage .g6{ grid-column: 5 / span 8 !important;  grid-row: span 2 !important; }

/* Rest tiles */
#gallery .gallery-grid.collage a:not(.g1):not(.g2):not(.g3):not(.g4):not(.g5):not(.g6){
  grid-column: span 3 !important;
  grid-row: span 2 !important;
}

/* Tablet */
@media (max-width: 992px){
  #gallery .gallery-grid.collage{
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
    grid-auto-rows: 90px !important;
  }
  #gallery .gallery-grid.collage .g1{ grid-column: 1 / span 8 !important; grid-row: span 4 !important; }
  #gallery .gallery-grid.collage .g2{ grid-column: 1 / span 4 !important; grid-row: span 2 !important; }
  #gallery .gallery-grid.collage .g3{ grid-column: 5 / span 4 !important; grid-row: span 2 !important; }
  #gallery .gallery-grid.collage .g4{ grid-column: 1 / span 4 !important; grid-row: span 2 !important; }
  #gallery .gallery-grid.collage .g5{ grid-column: 5 / span 4 !important; grid-row: span 2 !important; }
  #gallery .gallery-grid.collage .g6{ grid-column: 1 / span 8 !important; grid-row: span 2 !important; }

  #gallery .gallery-grid.collage a:not(.g1):not(.g2):not(.g3):not(.g4):not(.g5):not(.g6){
    grid-column: span 4 !important;
  }
}

/* Mobile: single column */
@media (max-width: 640px){
  #gallery .gallery-grid.collage{
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
  }
  #gallery .gallery-grid.collage a{
    grid-column: auto !important;
    grid-row: auto !important;
  }
  #gallery .gallery-grid.collage img{
    height: 230px !important;
  }
}

/* =========================================
   ROOMS ONLY — Price badge visibility + tag on right
========================================= */
#rooms .room_head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
#rooms .room_head h3{ margin:0; }

#rooms .room_tag{
  margin:0;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

#rooms .room_img{ position:relative; }

#rooms .room_price{
  position:absolute;
  left: 14px;
  bottom: 14px;
  right: auto;

  display:inline-flex;
  align-items:center;
  gap: 8px;
  white-space:nowrap;

  padding: 8px 12px;
  border-radius: 14px;

  background: rgba(10, 94, 168, .88) !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.18) !important;
}

#rooms .room_price .price{
  display:inline !important;
  margin:0 !important;
  line-height:1 !important;
  font-weight: 900 !important;
  color:#ffffff !important;
  font-size: 16px !important;
}

#rooms .room_price .per{
  display:inline !important;
  margin:0 !important;
  line-height:1 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.88) !important;
}

/* ================================
   BLOG HERO (background + overlay)
================================ */
.blog.blog-hero{
  position: relative;
  padding: 90px 0 95px;
  background: url("images/greekBlogBanner.jpg") center/cover no-repeat;
  color: #fff;
}
.blog.blog-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.60);
  z-index:0;
}
.blog.blog-hero .container{
  position: relative;
  z-index: 1;
}
.blog.blog-hero .titlepage h2,
.blog.blog-hero .titlepage p{
  color:#fff;
}
/* ✅ FIX: Rooms price badge became long bar -> make it SHORT + GLASS
   Put this at the VERY BOTTOM of style.css
*/
#rooms .room_price{
  position: absolute !important;

  /* stop stretching */
  left: 14px !important;
  right: auto !important;
  top: auto !important;
  bottom: 14px !important;

  width: auto !important;
  max-width: max-content !important;
  min-width: 0 !important;

  /* one-line badge */
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;

  padding: 8px 12px !important;
  border-radius: 14px !important;

  /* glass look */
  background: rgba(11,79,138,.35) !important; /* blue glass */
  border: 1px solid rgba(255,255,255,.38) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.18) !important;
}

#rooms .room_price .price,
#rooms .room_price .per{
  display: inline !important;   /* prevent stacked layout */
  margin: 0 !important;
  line-height: 1 !important;
}

#rooms .room_price .price{
  font-weight: 900 !important;
  color: #fff !important;
}

#rooms .room_price .per{
  font-size: 12px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.88) !important;
}
/* Booking Modal */
.bmodal{ position:fixed; inset:0; display:none; z-index:9999; }
.bmodal.is-open{ display:block; }
.bmodal__overlay{ position:absolute; inset:0; background:rgba(0,0,0,.45); }

.bmodal__card{
  position:relative;
  width:min(720px, 92vw);
  margin:7vh auto 0;
  background:#fff;
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.bmodal__close{
  position:absolute; top:10px; right:12px;
  width:38px; height:38px;
  border:0; border-radius:12px;
  background:rgba(0,0,0,.06);
  font-size:22px; cursor:pointer;
}

.bmodal__title{ margin:4px 0 4px; }
.bmodal__sub{ margin:0 0 14px; opacity:.75; }

.bmodal__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.bmodal__field label{ display:block; font-size:13px; margin:0 0 6px; opacity:.8; }
.bmodal__field input,
.bmodal__field select,
.bmodal__field textarea{
  width:100%;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,.15);
  border-radius:12px;
  outline:none;
}

.bmodal__field--full{ grid-column:1 / -1; }

.bmodal__submit{
  width:100%;
  margin-top:12px;
  padding:12px 14px;
  border:0;
  border-radius:14px;
  cursor:pointer;
}

.bmodal__note{ margin:10px 0 0; font-size:14px; }

@media (max-width: 640px){
  .bmodal__grid{ grid-template-columns:1fr; }
}
/* =========================================================
   BOOKING MODAL (Greek Hills Blue Motif)
   Paste at the BOTTOM of style.css
   ========================================================= */

.bmodal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none; /* hidden by default */
}

.bmodal.is-open{ display:block; }

.bmodal__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
}

.bmodal__card{
  position: relative;
  width: min(640px, calc(100% - 28px));
  margin: 80px auto 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  overflow: hidden;
  border: 1px solid rgba(10, 94, 168, .18);
}

.bmodal__card::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height: 8px;
  background: #0a5ea8; /* Greek Hills blue motif */
}

.bmodal__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.bmodal__title{
  margin: 18px 18px 6px;
  font-family: "Cinzel", serif;
  font-size: 22px;
  font-weight: 800;
  color: #0a5ea8;
}

.bmodal__sub{
  margin: 0 18px 12px;
  color: rgba(17,17,17,.75);
  font-size: 14px;
}

.bmodal__status{
  margin: 0 18px 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #f5f9ff;
  color: rgba(17,17,17,.85);
  font-size: 14px;
  display: none;
}

.bmodal__status.is-show{ display:block; }

.bmodal__status.is-success{
  border-color: rgba(10,94,168,.25);
  background: rgba(10,94,168,.08);
}

.bmodal__status.is-error{
  border-color: rgba(214, 40, 40, .35);
  background: rgba(214, 40, 40, .08);
}

.bmodal__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 18px 14px;
}

@media (max-width: 560px){
  .bmodal__grid{ grid-template-columns: 1fr; }
  .bmodal__card{ margin-top: 64px; }
}

.bmodal__field label{
  display:block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(17,17,17,.80);
  margin: 0 0 6px;
}

.bmodal__field input,
.bmodal__field select,
.bmodal__field textarea{
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  font-size: 14px;
  outline: none;
}

.bmodal__field input:focus,
.bmodal__field select:focus,
.bmodal__field textarea:focus{
  border-color: rgba(10,94,168,.55);
  box-shadow: 0 0 0 4px rgba(10,94,168,.12);
}

.bmodal__field--full{ grid-column: 1 / -1; }

.bmodal__actions{
  padding: 0 18px 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.bmodal__submit{
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 14px;
  background: #0a5ea8;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .2px;
  box-shadow: 0 12px 28px rgba(10,94,168,.25);
}

.bmodal__submit:disabled{
  opacity: .70;
  cursor: not-allowed;
}

.bmodal__note{
  margin: 0;
  font-size: 13px;
  color: rgba(17,17,17,.70);
  text-align: center;
}
.apollo-thumbs{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 12px 12px 0;
    background: transparent;
  }
  .apollo-thumb{
    border: 2px solid rgba(0,0,0,.10);
    background: #fff;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    line-height: 0;
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
  }
  .apollo-thumb img{
    width: 100%;
    height: 70px;
    object-fit: cover;
    display: block;
  }
  .apollo-thumb.is-active{
    border-color: rgba(10,94,168,.95);
    outline: 2px solid rgba(10,94,168,.20);
  }

  @media (max-width: 420px){
    .apollo-thumb img{ height: 56px; }
    .apollo-thumbs{ gap: 8px; padding: 10px 10px 0; }
  }
   .aphro-thumbs{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 12px 12px 0;
    background: transparent;
  }
  .aphro-thumb{
    border: 2px solid rgba(0,0,0,.10);
    background: #fff;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    line-height: 0;
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
  }
  .aphro-thumb img{
    width: 100%;
    height: 70px;
    object-fit: cover;
    display: block;
  }
  .aphro-thumb.is-active{
    border-color: rgba(10,94,168,.95);
    outline: 2px solid rgba(10,94,168,.20);
  }

  @media (max-width: 420px){
    .aphro-thumb img{ height: 56px; }
    .aphro-thumbs{ gap: 8px; padding: 10px 10px 0; }
  }
  /* Thumbnails BELOW main image (Hera) */
.hera-thumbs{
  display:flex;
  gap:10px;
  margin: 10px 0 0;
  padding: 0;
  flex-wrap: wrap;
}
.hera-thumb{
  border: 2px solid rgba(10,94,168,.18);
  background: #fff;
  border-radius: 14px;
  padding: 0;
  width: 74px;
  height: 54px;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hera-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.hera-thumb.is-active{
  border-color: #0a5ea8;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}
/* Thumbnails below room photo (shared) */
.room-thumbs{
  display:flex;
  gap:12px;
  padding:12px 4px 0;
  justify-content:center;
  flex-wrap:wrap;
}

.room-thumb{
  width:72px;
  height:56px;
  padding:0;
  border:2px solid rgba(11,79,138,.20);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  cursor:pointer;
  transition:transform .12s ease, border-color .12s ease;
}

.room-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.room-thumb:hover{ transform:translateY(-1px); }
.room-thumb.is-active{
  border-color: rgba(11,79,138,.85);
}

/* Mobile sizing */
@media (max-width:520px){
  .room-thumb{ width:64px; height:52px; border-radius:12px; }
}
/* ✅ Scroll the whole modal (not the inner form) */
.bmodal{
  overflow-y: auto;                 /* allow scrolling */
  -webkit-overflow-scrolling: touch;
  padding: 24px 12px;               /* top/bottom space when scrolling */
  align-items: flex-start;          /* start from top, not centered */
}

/* keep the card inside viewport and allow it to be reached by scroll */
.bmodal__card{
  margin: 0 auto;                   /* center horizontally */
  margin-top: 12px;                 /* little space from top */
  max-height: none;                 /* remove any height limit */
  overflow: visible;                /* important: no inner clipping */
}

