/* Arunaa Inn - Hotel & Banquets near Chennai Airport */

:root {
  --pink: #E91E8B;
  --pink-dark: #B5176F;
  --pink-light: #F8BBD0;
  --pink-50: #FFF5F9;
  --pink-100: #FFE4F0;
  --text: #1F1F1F;
  --text-muted: #6B7280;
  --border: #F3E5F5;
  --bg: #FFFFFF;
  --bg-alt: #FAFAFA;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 12px rgba(233,30,139,.08);
  --shadow-lg: 0 12px 32px rgba(233,30,139,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--pink); text-decoration: none; transition: color .2s; }
a:hover { color: var(--pink-dark); }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: .5em;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
ul, ol { margin: 0 0 1rem 1.5rem; }
li { margin-bottom: .25rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== TOP BAR ========== */
.topbar {
  background: var(--pink-dark);
  color: #fff;
  font-size: .85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.topbar a { color: #fff; }
.topbar-info { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { font-size: .9rem; }

/* ========== HEADER / NAV ========== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin: -18px 0;       /* let the logo extend well above/below the nav padding */
}
.brand img {
  height: 130px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 900px) {
  .brand { margin: -10px 0; }
  .brand img { height: 100px; }
}
@media (max-width: 600px) {
  .brand { margin: -6px 0; }
  .brand img { height: 76px; }
}

.header-nudge { display: none; }
@media (max-width: 900px) {
  .header-nudge {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 28px;
    margin: 0 8px;
    background: var(--pink-50);
    border: 1px solid #fbd5e5;
    border-radius: 999px;
    overflow: hidden;
    min-width: 0;
  }
  .header-nudge span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    color: var(--pink-dark);
    opacity: 0;
    white-space: nowrap;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: nudgeRotate 25s infinite;
  }
  .header-nudge span:nth-child(1) { animation-delay: 0s; }
  .header-nudge span:nth-child(2) { animation-delay: 5s; }
  .header-nudge span:nth-child(3) { animation-delay: 10s; }
  .header-nudge span:nth-child(4) { animation-delay: 15s; }
  .header-nudge span:nth-child(5) { animation-delay: 20s; }
}
@keyframes nudgeRotate {
  0%   { opacity: 0; transform: translateY(8px); }
  4%   { opacity: 1; transform: translateY(0); }
  16%  { opacity: 1; transform: translateY(0); }
  20%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .header-nudge span { animation: none; }
  .header-nudge span:first-child { opacity: 1; }
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 24px;
  background: var(--pink);
  border-radius: 2px;
  transition: .3s;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; align-items: center; }
.main-nav li { margin: 0; position: relative; }
.main-nav a {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.main-nav a:hover, .main-nav a.active { background: var(--pink-50); color: var(--pink); }

.has-submenu > a::after {
  content: " ▾";
  font-size: .7em;
  opacity: .7;
}
.submenu {
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  margin: 0;
  border: 1px solid var(--border);
}
.submenu li { margin: 0; }
.submenu a { padding: 10px 16px; border-radius: 0; font-size: .9rem; }
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-align: center;
}
.btn-primary { background: var(--pink); color: #fff !important; }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { border-color: var(--pink); color: var(--pink) !important; background: transparent; }
.btn-outline:hover { background: var(--pink); color: #fff !important; }
.btn-white { background: #fff; color: var(--pink) !important; }
.btn-white:hover { background: var(--pink-50); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-whatsapp { background: #25D366; color: #fff !important; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-1px); }
.btn-call { background: #fff; color: var(--pink-dark) !important; border-color: #fff; }
.btn-call:hover { background: var(--pink-50); }

.cta-btn { display: none; }

@media (min-width: 901px) { .cta-btn { display: inline-flex; } }

/* ========== MOBILE NAV ========== */
.nav-close { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 70px 20px 30px;
    box-shadow: -8px 0 32px rgba(0,0,0,.1);
    overflow-y: auto;
    z-index: 100;
  }
  .main-nav.open { display: flex; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .main-nav a { padding: 14px 12px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .has-submenu > a::after { float: right; }
  .submenu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    background: var(--pink-50);
    padding: 0;
    margin: 0 0 0 16px;
    border-radius: 0;
  }
  .submenu.open { display: block; }
  .submenu a { padding: 12px 16px; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 99;
  }
  .nav-overlay.show { display: block; }
  .nav-close {
    display: block;
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: 0;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--pink);
    width: 40px;
    height: 40px;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--pink-50) 0%, #fff 100%);
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-content .eyebrow {
  display: inline-block;
  background: var(--pink-100);
  color: var(--pink-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 18px;
}
.hero h1 .highlight { color: var(--pink); }
.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.hero-meta-item { display: flex; align-items: center; gap: 10px; }
.hero-meta-num { font-size: 1.5rem; font-weight: 800; color: var(--pink); }
.hero-meta-label { font-size: .85rem; color: var(--text-muted); }

.hero-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.hero-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  transition: transform .15s, box-shadow .15s;
}
.hero-perk:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.hero-perk-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pink-50);
  color: var(--pink);
}
.hero-perk div { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.hero-perk strong { font-size: .98rem; font-weight: 700; color: var(--text); }
.hero-perk span { font-size: .8rem; color: var(--text-muted); }
.hero-perk-highlight { background: linear-gradient(135deg, var(--pink-50), #fff); border-color: var(--pink); }
.hero-perk-highlight .hero-perk-icon { background: var(--pink); color: #fff; }
.hero-perk-highlight strong { color: var(--pink-dark); }

.policy-chips {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.policy-chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  line-height: 1.2;
}
.policy-chips li svg { color: #14a085; flex-shrink: 0; }
.policy-chips li:nth-child(1) { background: linear-gradient(135deg, #fff5f9, #fff); border-color: var(--pink); color: var(--pink-dark); }
.policy-chips li:nth-child(1) svg { color: var(--pink); }

.hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255,255,255,.95);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--pink-dark);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 40px 0 50px; }
}

/* ========== PAGE BANNER (sub pages) ========== */
.page-banner {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
}
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.breadcrumb {
  font-size: .9rem;
  opacity: .9;
}
.breadcrumb a { color: #fff; text-decoration: underline; }
.breadcrumb span { margin: 0 8px; opacity: .6; }

/* ========== SECTIONS ========== */
.section { padding: 70px 0; }
.section-sm { padding: 50px 0; }
.section-alt { background: var(--bg-alt); }
.section-pink { background: var(--pink-50); }

.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--pink);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

@media (max-width: 700px) {
  .section { padding: 50px 0; }
  .section-head { margin-bottom: 35px; }
}

/* ========== AMENITIES GRID ========== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}
.amenity-card {
  text-align: center;
  padding: 26px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .25s;
}
.amenity-card:hover {
  border-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.amenity-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--pink-100);
  color: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.amenity-card h3 { font-size: 1rem; margin-bottom: 0; }

/* ========== ROOMS / CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card-body p { color: var(--text-muted); font-size: .95rem; flex: 1; }
.card-price {
  display: inline-block;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 12px;
}
.card-cta { margin-top: 12px; }

/* ========== STATS / FEATURE STRIPE ========== */
.stats-bar {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: #fff;
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-num { font-size: 2.4rem; font-weight: 800; margin-bottom: 4px; }
.stat-label { font-size: .95rem; opacity: .9; }

/* ========== SPLIT / ABOUT ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-content .eyebrow {
  display: inline-block;
  color: var(--pink);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.split-content h2 { margin-bottom: 16px; }
.split-content p { color: var(--text-muted); margin-bottom: 14px; }
.split-list { list-style: none; margin: 18px 0; padding: 0; }
.split-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}
.split-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: bold;
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split-img { order: -1; }
}

/* ========== USEFUL LINKS GRID ========== */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.link-card {
  display: block;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  position: relative;
}
.link-card:hover {
  border-color: var(--pink);
  background: var(--pink-50);
  color: var(--pink-dark);
  transform: translateX(4px);
}
.link-card::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 1.2rem;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 600px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* ========== FAQ ========== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 0;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  color: var(--text);
  font-family: inherit;
}
.faq-q::after { content: "+"; color: var(--pink); font-size: 1.4rem; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  color: var(--text-muted);
}
.faq-item.open .faq-a { display: block; }

/* ========== CONTACT FORM ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }

.form-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border .2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-100);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-row-2 { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.info-icon {
  flex: 0 0 48px;
  height: 48px;
  background: var(--pink-100);
  color: var(--pink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: .95rem; color: var(--text); margin: 0; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ===== GLOBAL FIND-US MAP ===== */
.site-map {
  background: var(--pink-50);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.map-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: stretch;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-info { padding: 36px 32px; }
.map-info .eyebrow {
  display: inline-block;
  background: var(--pink-100);
  color: var(--pink-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.map-info h2 { color: var(--pink-dark); margin-bottom: 16px; }
.map-address, .map-meta {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text); font-size: .98rem; margin-bottom: 12px;
}
.map-address .ico, .map-meta .ico { color: var(--pink); flex-shrink: 0; margin-top: 3px; }
.map-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.map-actions .btn { padding: 10px 18px; font-size: .92rem; }
.map-actions .btn-wa { border-color: #25D366; color: #25D366 !important; }
.map-actions .btn-wa:hover { background: #25D366; color: #fff !important; }
.map-iframe { min-height: 360px; }
.map-iframe iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
@media (max-width: 800px) {
  .map-block { grid-template-columns: 1fr; }
  .map-info { padding: 28px 22px; }
  .map-iframe iframe, .map-iframe { min-height: 320px; }
}

/* ===== BENEFIT RIBBON (under hero) ===== */
.benefit-ribbon {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: #fff;
  padding: 18px 0;
}
.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}
.ribbon-item { display: flex; flex-direction: column; gap: 2px; }
.ribbon-item strong { font-size: 1.05rem; font-weight: 700; }
.ribbon-item span { font-size: .82rem; opacity: .92; }
@media (max-width: 700px) {
  .ribbon-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ===== AMENITY HIGHLIGHT (for free A2B breakfast) ===== */
.amenity-card.amenity-highlight {
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--pink-100) 100%);
  border: 2px solid var(--pink);
  position: relative;
}
.amenity-card.amenity-highlight::before {
  content: "FREE";
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--pink);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 12px;
}
.amenity-sub {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== FEATURE CARD with pill (e.g. A2B breakfast) ===== */
.card-feature {
  background: linear-gradient(135deg, var(--pink-50) 0%, #fff 100%);
  border: 2px solid var(--pink);
}
.card-pill {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ===== PRICE CARD (room pages) ===== */
.price-card {
  background: linear-gradient(135deg, var(--pink-50) 0%, #fff 100%);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 22px 0 28px;
  box-shadow: var(--shadow-sm);
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.price-row:last-child { border-bottom: 0; }
.price-label { font-weight: 600; color: var(--text); font-size: 1rem; }
.price-value { font-weight: 800; color: var(--pink-dark); font-size: 1.4rem; }
.price-value small { font-size: .8rem; font-weight: 500; color: var(--text-muted); margin-left: 2px; }
.price-note { color: var(--text-muted); font-size: .9rem; font-style: italic; }

/* ========== TESTIMONIALS ========== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.review-stars { color: #fbbf24; margin-bottom: 10px; font-size: 1.1rem; }
.review-text { font-size: .95rem; color: var(--text); margin-bottom: 16px; line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.review-name { font-weight: 600; font-size: .95rem; }
.review-source { font-size: .8rem; color: var(--text-muted); }

/* ========== CTA STRIP ========== */
.cta-strip {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,.95); max-width: 640px; margin: 0 auto 24px; font-size: 1.05rem; }
.cta-strip .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
.site-footer {
  background: #1A1A1A;
  color: #d1d5db;
  padding: 60px 0 0;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #d1d5db; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--pink-light); padding-left: 5px; }
.footer-brand img { height: 70px; margin-bottom: 14px; background: #fff; padding: 6px; border-radius: 8px; }
.footer-about { font-size: .9rem; line-height: 1.6; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-item .icon { color: var(--pink); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
  color: #9ca3af;
}
.footer-bottom a { color: var(--pink-light); }

/* ========== FLOATING CTA ========== */
.float-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  font-size: 1.4rem;
  transition: transform .2s;
}
.float-btn:hover { transform: scale(1.08); }
.float-call { background: var(--pink); }
.float-wa { background: #25D366; }
@media (max-width: 500px) {
  .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
  .float-cta { bottom: 14px; right: 14px; }
}

/* ========== SVG ICONS ========== */
.ico {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.btn .ico { margin-right: 4px; }
.ti {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ico-wrap {
  flex: 0 0 24px;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.amenity-icon .ico { stroke-width: 1.6; }
.info-icon .ico { stroke-width: 1.7; }
.rating-stars { color: #fbbf24; display: inline-flex; gap: 2px; vertical-align: middle; }

/* ========== FORM REFINEMENTS ========== */
.form-title {
  margin-bottom: 18px;
  color: var(--pink-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-title .ico { color: var(--pink); }
.req { color: var(--pink); }
.lead-form button[type="submit"] { margin-top: 6px; }
.form-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  font-size: .85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.form-alt-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--pink) !important;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all .2s;
}
.form-alt-btn:hover {
  background: var(--pink-50);
  border-color: var(--pink);
}

/* ========== MOBILE BOTTOM BAR ========== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 60;
  box-shadow: 0 -4px 14px rgba(0,0,0,.08);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  gap: 3px;
  border-right: 1px solid var(--border);
  transition: background .15s;
}
.mobile-bar-btn:last-child { border-right: 0; }
.mobile-bar-btn:active { background: var(--pink-50); }
.mobile-bar-call { background: var(--pink-50); color: var(--pink-dark) !important; font-weight: 700; }
.mobile-bar-call .ico { color: var(--pink); }
.mobile-bar-wa { background: #25D366; color: #fff !important; font-weight: 700; }
.mobile-bar-wa .ico { color: #fff; }
.mobile-bar-book { background: var(--pink); color: #fff !important; font-weight: 700; }
.mobile-bar-book .ico { color: #fff; }

@media (max-width: 768px) {
  .mobile-bar { display: flex; }
  .float-cta { display: none; }
  body { padding-bottom: 64px; }
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.flex-row { display: flex; gap: 12px; flex-wrap: wrap; }

.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 30px; margin-bottom: 14px; color: var(--pink-dark); }
.prose h3 { margin-top: 22px; margin-bottom: 10px; }
.prose p, .prose li { color: #374151; }
.prose ul { margin-bottom: 18px; }
.prose img { border-radius: var(--radius-sm); margin: 20px 0; box-shadow: var(--shadow-sm); }
.prose .highlight-box {
  background: var(--pink-50);
  border-left: 4px solid var(--pink);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin: 22px 0;
}

.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 800px;
  margin: 30px auto;
  box-shadow: var(--shadow);
}
.video-wrap video { width: 100%; display: block; }

/* ========== SIDE TAB: GET DIRECTIONS ========== */
.side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--pink);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .4px;
  padding: 14px 8px;
  border-radius: 10px 0 0 10px;
  box-shadow: -3px 0 14px rgba(0,0,0,.18);
  z-index: 70;
  transition: padding .2s ease, background .2s ease;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.side-tab:hover { background: var(--pink-dark); padding-right: 12px; }
.side-tab .ico { writing-mode: horizontal-tb; transform: rotate(0deg); }
@media (max-width: 768px) {
  .side-tab {
    font-size: .72rem;
    padding: 10px 6px;
    letter-spacing: .2px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}

/* ========== PRINT ========== */
@media print {
  .topbar, .site-header, .float-cta, .side-tab, .site-footer { display: none; }
}
