/* ═══════════════════════════════════════════
   PUBLIC PAGES — Premium Minimalist Mirova Theme
   ═══════════════════════════════════════════ */

/* ── MARQUEE BANNER ── */
.top-marquee {
  background-color: var(--primary);
  color: var(--bg-color);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 100;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee-content span {
  display: inline-block;
  padding-right: 50px;
}
@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ── NAV OVERRIDES ── */
.public-nav {
  background-color: var(--bg-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 90;
  transition: all 0.3s ease;
  padding: 0 40px;
}
.public-nav.scrolled {
  box-shadow: 0 10px 35px rgba(0,0,0,0.03);
  background-color: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(12px);
}
.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: padding 0.3s ease;
  position: relative;
}
.public-nav.scrolled .nav-container {
  padding: 14px 0;
}
.public-nav-brand {
  font-family: var(--header-font);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.public-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.public-nav-links a {
  text-decoration: none;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.public-nav-links a:hover {
  opacity: 1;
  color: var(--secondary);
}
.public-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
}
@media(max-width:768px) {
  .public-nav-toggle { display: block; }
  .public-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-color);
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    gap: 16px;
    z-index: 200;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .public-nav-links.open { display: flex; }
}

/* ── MIROVA HERO ── */
.mirova-hero {
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  background-color: var(--bg-color);
  max-width: 1200px;
  margin: 0 auto;
}
.mirova-hero-text {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: end;
}
.mirova-hero-title {
  font-family: var(--header-font);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--primary);
  margin: 0;
  letter-spacing: -1.5px;
}
.mirova-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--secondary);
}
.mirova-hero-desc {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.mirova-hero-desc p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--primary);
  opacity: 0.8;
  margin: 0 0 28px;
}
.mirova-hero-actions {
  display: flex;
  gap: 12px;
}
.mirova-hero-banner {
  position: relative;
  width: 100%;
  height: clamp(340px, 65vh, 640px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}
.mirova-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.mirova-hero-banner:hover .mirova-banner-img {
  transform: scale(1.03);
}
.mirova-banner-tag {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 24px;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mirova-banner-tag:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}
.tag-header {
  margin-bottom: 12px;
}
.tag-title {
  font-family: var(--header-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}
.tag-category {
  font-size: 12px;
  color: var(--primary);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.tag-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 18px;
}
@media(max-width: 820px) {
  .mirova-hero { padding: 40px 20px 20px; }
  .mirova-hero-text {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }
  .mirova-banner-tag {
    position: static;
    width: calc(100% - 48px);
    margin: 20px auto;
  }
}

/* ── SEARCH BAR ── */
.ph-search-bar {
  background: var(--white);
  max-width: 1200px;
  margin: 40px auto 0;
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.06);
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.04);
}
.search-section-title {
  font-family: var(--header-font);
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--primary);
}
.ph-search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: end;
}
.ph-search-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.8;
  margin-bottom: 8px;
}
.ph-search-field label i {
  color: var(--secondary);
  margin-right: 6px;
}
.ph-search-btn {
  white-space: nowrap;
  height: 46px;
  padding: 0 32px;
}
@media(max-width:768px) {
  .ph-search-bar { margin: 20px 16px 0; padding: 24px; }
  .ph-search-form { grid-template-columns: 1fr; gap: 16px; }
}

/* ── SECTIONS & CONTAINERS ── */
.ph-section { padding: 100px 40px; }
.ph-container { max-width: 1200px; margin: 0 auto; }
.ph-section-header { text-align: center; margin-bottom: 64px; }
.ph-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  display: block;
  margin-bottom: 14px;
}
.ph-section-header h2 {
  font-family: var(--header-font);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 18px;
}
.ph-section-header p {
  font-size: 16px;
  color: var(--primary);
  opacity: 0.7;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
@media(max-width:768px) { .ph-section { padding: 60px 20px; } }

/* ── MINIMALIST CARDS ── */
.ph-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.ph-type-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.ph-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}
.ph-type-img {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}
.ph-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ph-type-card:hover .ph-type-img img {
  transform: scale(1.04);
}
.ph-type-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--gray-300);
  background: var(--gray-50);
}
.ph-type-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(26,44,78,0.9);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.ph-type-body { padding: 28px; }
.ph-type-body h3 {
  font-family: var(--header-font);
  font-size: 24px;
  margin: 0 0 10px;
  font-weight: 600;
}
.ph-type-body p {
  font-size: 14px;
  color: var(--primary);
  opacity: 0.7;
  line-height: 1.7;
  margin: 0 0 20px;
}
.ph-type-meta {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 20px;
}
.ph-type-meta i {
  color: var(--secondary);
  margin-right: 6px;
}

/* ── AVAILABLE ROOM CARDS ── */
.ph-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.ph-room-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.ph-room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}
.ph-room-img {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}
.ph-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ph-room-card:hover .ph-room-img img {
  transform: scale(1.04);
}
.ph-room-status {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ph-room-status.available {
  background: rgba(22, 163, 74, 0.9);
  color: var(--white);
}
.ph-room-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ph-room-meta {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 8px;
}
.ph-room-body h3 {
  font-family: var(--header-font);
  font-size: 22px;
  margin: 0 0 10px;
  font-weight: 600;
}
.ph-room-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.ph-room-price span {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.6;
}
.ph-room-details {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--primary);
  opacity: 0.6;
  margin-top: auto;
  margin-bottom: 24px;
}
.ph-room-details i {
  color: var(--secondary);
  margin-right: 6px;
}

/* ── PREMIUM TESTIMONIAL LAYOUT ── */
.mirova-testimonial-section {
  background-color: var(--primary);
  color: var(--bg-color);
  padding: 120px 40px;
}
.mirova-testimonial-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.testimonial-left-col {
  display: flex;
  flex-direction: column;
}
.testimonial-main-heading {
  font-family: var(--header-font);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--bg-color);
  margin: 20px 0;
  letter-spacing: -1px;
}
.testimonial-subtitle {
  font-size: 16px;
  opacity: 0.75;
  line-height: 1.8;
  margin: 0;
}
.testimonial-right-col {
  display: flex;
  justify-content: flex-end;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px;
  border-radius: 16px;
  max-width: 520px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.testimonial-quote {
  font-family: var(--header-font);
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 32px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--secondary);
}
.author-name {
  font-weight: 600;
  font-size: 16px;
}
.author-role {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 2px;
}
@media(max-width: 900px) {
  .mirova-testimonial-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 32px;
  }
}

/* ── HOW IT WORKS ── */
.ph-how-section {
  background: linear-gradient(135deg, #0f1c30 0%, #172a45 100%);
  color: var(--white);
}
.ph-how-section .ph-section-header h2 {
  color: var(--white) !important;
}
.ph-how-section .ph-section-header .ph-label {
  color: var(--secondary) !important;
  opacity: 0.85;
}
.ph-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
}
.ph-step {
  text-align: center;
  max-width: 260px;
  flex: 1;
  min-width: 220px;
}
.ph-step-num {
  font-family: var(--header-font);
  font-size: 72px;
  font-weight: 800;
  color: rgba(184, 157, 117, 0.18);
  line-height: 1;
  margin-bottom: -15px;
}
.ph-step-icon {
  width: 64px;
  height: 64px;
  background: rgba(184, 157, 117, 0.15);
  border: 1.5px solid rgba(184, 157, 117, 0.4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--secondary);
  margin: 0 auto 20px;
}
.ph-step h3 {
  font-family: var(--header-font);
  font-size: 20px;
  color: var(--white);
  margin: 0 0 10px;
  font-weight: 600;
}
.ph-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}
.ph-step-arrow {
  font-size: 20px;
  color: rgba(184, 157, 117, 0.4);
  flex-shrink: 0;
}
@media(max-width:768px) { .ph-step-arrow { display: none; } }

/* ── PREMIUM FOOTER ── */
.ph-footer {
  background: #0d1b2a;
  color: rgba(255,255,255,0.65);
  padding: 80px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.ph-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.ph-footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 24px;
}
.ph-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.ph-footer-contact i {
  color: var(--secondary);
  margin-right: 8px;
}
.ph-footer h4 {
  font-family: var(--header-font);
  font-size: 18px;
  color: var(--white);
  margin: 0 0 20px;
  font-weight: 600;
}
.ph-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.ph-footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.ph-footer-links a:hover {
  color: var(--secondary);
}
.ph-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
@media(max-width:768px) {
  .ph-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .ph-footer { padding: 60px 20px 0; }
  .ph-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ── SYSTEM ALERTS ── */
.alert {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.alert-success {
  background-color: rgba(22, 163, 74, 0.08);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.16);
}
.alert-danger {
  background-color: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.16);
}
.alert-info {
  background-color: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.16);
}
.alert-warning {
  background-color: rgba(217, 119, 6, 0.08);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.16);
}

/* ── PUBLIC BASE UTILITIES ── */
.nav-logo {
  height: 36px;
  object-fit: contain;
}
.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav-logout-btn {
  margin-left: 8px;
}
.main-content-wrap {
  min-height: calc(100vh - 280px);
}
.alerts-container {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 24px;
}
.footer-brand-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.footer-hours-block {
  margin-top: 16px;
}
.footer-hours-item-first {
  font-size: 13px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-hours-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-built-by {
  font-size: 12px;
  opacity: 0.5;
}
.d-none-mobile {
  display: block;
}
@media (max-width: 768px) {
  .d-none-mobile {
    display: none;
  }
}

/* ── LICENSING PAGE STYLES ── */
.license-card-header-expired {
  background-color: #dc2626;
  border: none;
  text-align: center;
  padding: 40px 20px;
}
.license-card-header-inactive {
  background-color: #4b5563;
  border: none;
  text-align: center;
  padding: 40px 20px;
}
.license-card-header-warn {
  background-color: #d97706;
  border: none;
  text-align: center;
  padding: 40px 20px;
}
.license-title {
  color: white;
  margin: 0;
  font-family: var(--header-font);
}
.license-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0 0;
  font-size: 14px;
}
.license-warning-icon {
  font-size: 48px;
  color: white;
  margin-bottom: 16px;
}
.license-card-body {
  padding: 32px;
}
.license-note-box {
  margin-top: 24px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
}
.license-note-title {
  margin: 0 0 8px;
  font-size: 14px;
}
.license-note-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #374151;
}
.license-renew-btn {
  background-color: #16a34a !important;
  border: none !important;
}
.license-renew-btn:hover {
  background-color: #15803d !important;
}
.license-sec-label {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 12px;
}
.license-admin-link {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
}
.license-admin-link:hover {
  color: var(--secondary);
}
.license-desc-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 24px;
}
.license-card-footer {
  text-align: center;
}
.license-limit-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
}

/* ── MODERN FEATURES SECTION ── */
.ph-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.ph-feature-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.ph-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.05);
}
.ph-feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(184, 157, 117, 0.08); /* Secondary tint */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}
.ph-feature-card:hover .ph-feature-icon {
  background: var(--secondary);
  color: var(--white);
}
.ph-feature-card h3 {
  font-family: var(--header-font);
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 600;
}
.ph-feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--primary);
  opacity: 0.7;
  margin: 0;
}

/* ── STAFF LOGIN PAGE (sl-*) ── */
.sl-wrap {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-image: url('../images/placeholder_hero.png');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 24px;
}
.sl-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(26, 44, 78, 0.85) 0%, rgba(15, 28, 50, 0.92) 100%);
  z-index: 1;
}
.sl-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
}
.sl-card {
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sl-logo {
  text-align: center;
  margin-bottom: 32px;
}
.sl-logo-img {
  height: 52px;
  object-fit: contain;
  margin-bottom: 16px;
}
.sl-logo-placeholder {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.sl-logo-placeholder i {
  font-size: 24px;
  color: white;
}
.sl-title {
  font-family: var(--header-font);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px;
}
.sl-sub {
  font-size: 14px;
  color: var(--primary);
  opacity: 0.6;
  margin: 0;
}
.sl-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.sl-input-icon {
  position: absolute;
  left: 18px;
  color: var(--primary);
  opacity: 0.4;
  font-size: 16px;
  pointer-events: none;
}
.sl-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  color: var(--primary);
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.sl-input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(184, 157, 117, 0.12);
  outline: none;
}
.sl-eye {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: var(--primary);
  opacity: 0.4;
  cursor: pointer;
  padding: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.sl-eye:hover {
  opacity: 0.7;
}
.sl-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sl-back {
  text-align: center;
  margin-top: 24px;
}
.sl-back a {
  color: var(--primary);
  opacity: 0.6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s, color 0.2s;
}
.sl-back a:hover {
  opacity: 1;
  color: var(--secondary);
}

@media(max-width: 480px) {
  .sl-card { padding: 32px 20px; }
}



/* ── MODERN FEATURES SECTION ── */
.ph-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.ph-feature-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.ph-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.05);
}
.ph-feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(184, 157, 117, 0.08); /* Secondary tint */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}
.ph-feature-card:hover .ph-feature-icon {
  background: var(--secondary);
  color: var(--white);
}
.ph-feature-card h3 {
  font-family: var(--header-font);
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 600;
}
.ph-feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--primary);
  opacity: 0.7;
  margin: 0;
}

/* ── CONTACT PAGE LAYOUT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
}
.contact-img-card {
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  margin-bottom: 32px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-details-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.contact-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(184, 157, 117, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary);
}
.contact-detail-content strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  color: var(--primary);
}
.contact-detail-content span, .contact-detail-content a {
  color: var(--primary);
  opacity: 0.8;
  font-size: 15px;
  text-decoration: none;
}
.contact-form-col {
  display: flex;
  flex-direction: column;
}
.contact-form-card {
  background: var(--white);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.contact-form-title {
  font-family: var(--header-font);
  font-size: 24px;
  color: var(--primary);
  margin: 0 0 8px;
}
.contact-form-subtitle {
  font-size: 14px;
  color: var(--primary);
  opacity: 0.6;
  margin: 0 0 32px;
}
.contact-input, .contact-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  color: var(--primary);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 6px;
}
.contact-input:focus, .contact-textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(184, 157, 117, 0.12);
  outline: none;
}
.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── ABOUT PAGE LAYOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
  align-items: center;
}
.about-text-col {
  display: flex;
  flex-direction: column;
}
.about-img-col {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.08);
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-col:hover .about-img {
  transform: scale(1.03);
}
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.about-feature-item {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.about-feature-item i {
  font-size: 28px;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}
.about-feature-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--primary);
}
.about-feature-item span {
  font-size: 13px;
  color: var(--primary);
  opacity: 0.65;
}

@media(max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form-card {
    padding: 32px 20px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px auto;
  }
  .about-img-col {
    height: 340px;
  }
}/* ── ROOM DETAIL PAGE LAYOUT ── */
.rd-section-wrap {
  background-color: var(--gray-50);
  min-height: 100vh;
}
.rd-container-boxed {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}
.rd-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 32px;
  text-decoration: none;
  transition: color 0.2s;
}
.rd-back-btn:hover {
  color: var(--secondary);
}
.rd-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}
.rd-info {
  display: flex;
  flex-direction: column;
}
.rd-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
  margin-bottom: 32px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.rd-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rd-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--gray-300);
  background: var(--gray-100);
}
.rd-availability-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  z-index: 5;
}
.rd-availability-badge.available {
  background: rgba(22, 163, 74, 0.9);
  color: white;
}
.rd-availability-badge.unavailable {
  background: rgba(220, 38, 38, 0.9);
  color: white;
}
.rd-details-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}
.rd-room-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 8px;
}
.rd-room-title {
  font-family: var(--header-font);
  font-size: 36px;
  color: var(--primary);
  margin: 0 0 12px;
  font-weight: 600;
}
.rd-room-sub {
  font-size: 14px;
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 24px;
}
.rd-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.rd-price span {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
}
.rd-amenities {
  margin-top: 32px;
}
.rd-amenities h4 {
  font-family: var(--header-font);
  font-size: 18px;
  margin: 0 0 16px;
  color: var(--primary);
}
.rd-amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.rd-policy {
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(184, 157, 117, 0.06);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--primary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.rd-policy i {
  color: var(--secondary);
  font-size: 16px;
  margin-top: 2px;
}
.rd-form-col {
  position: sticky;
  top: 100px;
  z-index: 10;
}
.rd-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.rd-form-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.rd-form-header h2 {
  font-family: var(--header-font);
  font-size: 22px;
  color: var(--primary);
  margin: 0;
}
.rd-form-header p {
  font-size: 13px;
  color: var(--primary);
  opacity: 0.6;
  margin: 4px 0 0;
}
.rd-form-section {
  margin-bottom: 24px;
}
.rd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rd-price-calc {
  background: #f9fafb;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px dashed rgba(0, 0, 0, 0.06);
}
.rd-form-card .form-control,
.rd-form-card select,
.rd-form-card textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  color: var(--primary);
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 6px;
}
.rd-form-card .form-control:focus,
.rd-form-card select:focus,
.rd-form-card textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(184, 157, 117, 0.12);
  outline: none;
}
.rd-form-card textarea {
  resize: vertical;
  min-height: 80px;
}
.rd-desc-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}
.rd-amenity-grid .amenity-tag i {
  color: var(--success);
  margin-right: 4px;
}
.rd-form-header i {
  color: var(--primary);
  font-size: 22px;
}
.rd-form-card .form-text {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 4px;
}
.form-group.guests-num-field {
  max-width: 140px;
}
.rd-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#nightsLabel {
  font-size: 14px;
  color: var(--gray-600);
}
#totalPrice {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--header-font);
}
.calc-subtitle {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 4px;
}
.rd-form-card .secure-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
}
.rd-form-card.text-center-padded {
  text-align: center;
  padding: 40px;
}
.rd-form-card.text-center-padded i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}
.rd-form-card.text-center-padded i.unavailable-icon {
  color: var(--warning);
}
.rd-form-card.text-center-padded p {
  color: var(--gray-500);
  margin: 12px 0 24px;
}

@media(max-width: 900px) {
  .rd-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rd-form-col {
    position: static;
  }
  .rd-img-wrap {
    height: 320px;
  }
}
@media(max-width: 480px) {
  .rd-details-card, .rd-form-card {
    padding: 32px 20px;
  }
  .rd-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ── BOOKING CONFIRMATION ── */
.bc-container {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--gray-50) 0%, #f0f4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
}

.bc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.bc-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.bc-icon-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(184, 157, 117, 0.1);
  animation: bc-pulse 2.5s infinite;
}

@keyframes bc-pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 0.3; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.bc-check-icon {
  font-size: 32px;
  color: var(--secondary);
  position: relative;
  z-index: 1;
}

.bc-title {
  font-family: var(--header-font);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.bc-sub {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.6;
}

.bc-ref-badge {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
}

.bc-ref-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 8px;
  font-weight: 600;
}

.bc-ref-num {
  font-family: var(--header-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

.bc-ref-note {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 8px;
  letter-spacing: 0.2px;
}

.bc-details {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
  margin-bottom: 32px;
  text-align: left;
}

.bc-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
}

.bc-detail-label {
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.bc-detail-label i {
  width: 16px;
  color: var(--secondary);
  font-size: 14px;
}

.bc-detail-value {
  font-weight: 600;
  color: var(--primary);
}

.bc-total-row {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px dashed var(--gray-200);
}

.bc-total-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.bc-info-box {
  background: rgba(184, 157, 117, 0.05);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  text-align: left;
  align-items: flex-start;
}

.bc-info-icon {
  color: var(--secondary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bc-info-content strong {
  display: block;
  font-family: var(--header-font);
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 10px;
}

.bc-info-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 13px;
  color: var(--gray-600);
}

.bc-info-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.bc-info-list li:last-child {
  margin-bottom: 0;
}

.bc-info-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--secondary);
  font-size: 10px;
}

.bc-contact-prompt {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
  margin-bottom: 32px;
}

.bc-contact-link {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bc-contact-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.bc-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.bc-actions .btn {
  flex: 1;
}

@media(max-width: 576px) {
  .bc-container {
    padding: 60px 16px 40px;
  }
  .bc-card {
    padding: 30px 20px;
  }
  .bc-title {
    font-size: 26px;
  }
  .bc-actions {
    flex-direction: column;
    gap: 12px;
  }
  .bc-actions .btn {
    width: 100%;
  }
}
