/* ================================
   Variables
   ================================ */
:root {
  --section-bg: #F8F9FA;
  --bg-hero: #F8F9FA;
  --text-heading: #343A40;
  --text-body: #6C757D;
  --text-muted: #555555;
  --orange: #FF9F43;
  --orange-light: #FFB76D;
  --orange-btn: #FFA53E;
  --blue-header: #61A1F1;
  --blue-header-dark: #548EDA;
  --red-header: #FF2E5B;
  --red-header-dark: #E62952;
  --green-header: #3DCF86;
  --green-header-dark: #37B576;
  --success: #28A745;
  --danger: #DC3545;
  --border-input: #E0E0E0;
  --border-keyword: #D0E0FF;
  --invoice-bg: #E0F2F7;
  --invoice-title: #9EBAD1;
  --info-banner-bg: #e7f2fa;
  --info-banner-blue: #2196f3;
  --footer-cta-bg: #5BB2FF1A;
  --footer-cta-btn: #FFAA4C;
  --footer-highlight-border: #FFAA4C;
  --shadow-soft: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
  --radius-hero: 20px;
  --radius-card: 24px;
  --radius-card-header: 12px 12px 0 0;
  --radius-input: 10px;
  --radius-pill: 25px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Arimo', sans-serif;
}

/* ================================
   Global
   ================================ */
body {
  font-family: var(--font-body);
  color: var(--text-heading);
  background: var(--section-bg);
}

h1,
h2,
h3,
.navbar-brand,
.hero-title,
.pricing-card-name {
  font-family: var(--font-heading);
}

/* ================================
   Header
   ================================ */
.site-header .navbar {
  box-shadow: var(--shadow-soft);
}

.site-header .navbar-brand {
  font-size: 1.25rem;
}

.site-header .nav-link {
  font-weight: 500;
}

/* ================================
   Hero
   ================================ */
.hero-section {
  background: var(--section-bg);
  border-radius: 0 0 var(--radius-hero) var(--radius-hero);
  padding: 3rem 0 0.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-title-highlight {
  position: relative;
  display: inline-block;
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.1em;
  transform: translateX(-50%);
  width: 1.15em;
  height: 0.35em;
  border: 2.5px solid var(--orange);
  border-radius: 50%;
  background: transparent;
  z-index: 0;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-toggle-wrap {
  gap: 0.75rem 1rem;
}

.hero-toggle-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-heading);
}

.hero-switch {
  width: 64px;
  height: 32px;
  padding-left: 4px;
  padding-top: 4px;
  padding-right: 60px;
  background-color: #E9ECEF !important;
  background-image: radial-gradient(circle, #fff 14px, transparent 14px) !important;
  background-size: 32px 32px;
  background-position: 4px 50%;
  background-repeat: no-repeat;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.2s, background-position 0.2s;
}

.hero-switch:checked {
  background-color: var(--orange) !important;
  background-position: right 4px 50%;
}

.hero-badge {
  background: linear-gradient(to right, var(--orange-light), var(--orange));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  transform: rotate(5deg);
}

/* ================================
   Sections – Pricing cards
   ================================ */
.pricing-cards-section {
  padding: 3rem 0;
  background: var(--section-bg);
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 0.8px solid rgba(0, 0, 0, 0.06);
}

.pricing-card--featured {
  box-shadow: 0 6px 20px rgba(255, 46, 91, 0.2);
  border: 2px solid var(--red-header);
  padding-bottom: 1.75rem;
}

.pricing-cards-section .row {
  align-items: center;
}

.pricing-card-header {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-card-header);
  color: #fff;
}

.pricing-card-header--blue {
  background: var(--blue-header);
}

.pricing-card-header--red {
  background: var(--red-header);
}

.pricing-card-header--green {
  background: var(--green-header);
}

.pricing-card-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-card-price {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

.pricing-card-period {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.95;
}

.pricing-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.pricing-card-icon--blue {
  background: var(--blue-header-dark);
}

.pricing-card-icon--red {
  background: var(--red-header-dark);
}

.pricing-card-icon--green {
  background: var(--green-header-dark);
}

.pricing-card-body {
  padding: 32px;
  padding-bottom: 62px;
  position: relative;
  top: 30px;
}

.pricing-features {
  font-size: 0.9rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  color: var(--text-heading);
}

.pricing-feature.disabled {
  color: var(--text-body);
}

.pricing-feature i {
  font-size: 1rem;
  flex-shrink: 0;
}

.btn-pricing {
  background: var(--orange-btn);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-input);
  border: none;
}

.btn-pricing:hover {
  background: var(--orange);
  color: #fff;
}

/* ================================
   Sections – Prices (SEO / keywords)
   ================================ */
.prices-section {
  padding-left: 70px;
  padding-right: 70px;
  background: var(--section-bg);
}

.container--narrow {
  margin-left: auto;
  margin-right: auto;
}

.prices-pill {
  display: inline-block;
  background: #EAEAEA;
  color: #444444;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-weight: 700;
  font-family: 'Arimo', sans-serif;
}

.prices-lead {
  font-family: 'Arimo', sans-serif;
  font-size: 24px;
  line-height: 39px;
  color: #333333;
  margin-bottom: 2rem;
}

.prices-text {
  font-family: 'Arimo', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin-bottom: 2rem;
}

.prices-seo {
  font-family: 'Arimo', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 2rem;
}

.prices-seo strong {
  font-weight: 700;
}

.keyword-card {
  border: 1px solid #5BB2FF;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #4B5563;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  font-family: 'Arimo', sans-serif;
}

.keyword-card::before {
  color: #5BB2FF;
}

/* Rating points banner (end of prices section) */
.rating-banner {
  margin: 3rem;
  background: #69C2F5;
  border-radius: 20px;
  padding: 2.25rem 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.rating-banner::before,
.rating-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  top: 50%;
  transform: translateY(-50%);
}

.rating-banner::before {
  width: 160px;
  height: 160px;
  left: -40px;
}

.rating-banner::after {
  width: 130px;
  height: 130px;
  right: -30px;
}

.rating-banner-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.45;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.rating-banner-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #fff;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

/* ================================
   Sections – Invoice form
   ================================ */
.invoice-section {
  padding: 1.5rem;
  background: var(--section-bg);
  /* grey – shows above/below the blue inner */
}

.invoice-section-inner {
  background: rgba(91, 178, 255, 0.2);
  /* light blue – wraps title + form only */
  border-radius: 16px;
  padding-top: 96px;
  padding-bottom: 96px;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
  gap: 64px;
  flex-direction: column;
}

.invoice-title {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  color: var(--invoice-title);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: white;
}

.invoice-card {
  background: #fff;
  border-radius: 25px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.invoice-input,
.invoice-input.form-select {
  border-radius: var(--radius-input);
  border: 1px solid var(--border-input);
  padding: 0.6rem 1rem;
}

.invoice-input-icon {
  background: #fff;
  border: 1px solid var(--border-input);
  border-radius: var(--radius-input);
  color: var(--text-body);
}

.invoice-textarea {
  min-height: 100px;
  resize: vertical;
}

.btn-invoice {
  background: #FFA500;
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-input);
  border: none;
}

.btn-invoice:hover {
  background: #e69500;
  color: #fff;
}

.rotate-90 {
  transform: rotate(-90deg);
  display: inline-block;
}

/* ================================
   Sections – Info banner
   ================================ */
.info-banner-section {
  padding-left: 70px;
  padding-right: 70px;
  background: var(--section-bg);
}

.info-banner {
  background: var(--info-banner-bg);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  position: relative;
}

.info-banner-content {
  position: relative;
}

.info-banner-top {
  color: #5BB2FF;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.info-banner-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--info-banner-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
  position: relative;
}

.info-banner-icon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--info-banner-blue);
}

.info-banner-bottom {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.info-banner-bottom a {
  color: var(--info-banner-blue);
  text-decoration: underline;
}

.info-banner-bottom a:hover {
  color: #1976d2;
}

/* ================================
   Sections – Owners (terms)
   ================================ */
.owners-section {
  padding-left: 70px;
  padding-right: 70px;
  background: var(--section-bg);
}

.owners-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  padding-top: 3rem;
  border-bottom: 2px solid #ADB5BD;
  font-style: italic;
  display: inline-block;
}

.owners-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.owners-list {
  margin: 1rem 0 1.5rem 1.25rem;
  padding: 0;
  list-style: disc;
}

.owners-list li {
  margin-bottom: 0.5rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ================================
   Footer
   ================================ */
.site-footer {
  padding-left: 70px;
  padding-right: 70px;
  margin-bottom: 70px;
  background: var(--section-bg);
}

.footer-rules-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid #ADB5BD;
  padding-bottom: 0.5rem;
  padding-top: 3rem;
  display: inline-block;
  font-style: italic;
}

.footer-rules-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.footer-rules-highlight {
  border-left: 4px solid var(--footer-highlight-border);
  border-radius: 16px;
  padding-left: 1.25rem;
  margin-top: 1.25rem;
  height: 60px;
  display: flex;
  align-items: center;
}

.footer-rules-highlight p {
  font-style: italic;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-cta {
  margin-top: 2.5rem;
}

.footer-cta-inner {
  background: var(--footer-cta-bg);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-soft);
}

.footer-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}

.footer-cta-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.5;
}

.btn-cta {
  background: var(--footer-cta-btn);
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta:hover {
  background: #e66f0f;
  color: #fff;
}

.btn-cta-icon {
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ================================
   Responsive
   ================================ */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 2rem 0 2.5rem;
  }

  .pricing-cards-section .col-6 {
    margin-bottom: 0;
  }

  .pricing-card--featured {
    border-width: 2px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .pricing-cards-section .row {
    align-items: stretch;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .prices-lead,
  .prices-seo {
    font-size: 1.1rem;
  }

  .invoice-card {
    padding: 1.5rem;
  }

  .invoice-title {
    font-size: 1.25rem;
  }

  .info-banner {
    padding: 1.5rem 1.25rem;
  }

  .footer-cta-inner {
    padding: 1.5rem 1.25rem;
  }

  .footer-cta-title {
    font-size: 1.25rem;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .keyword-grid .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pricing-cards-section {
    padding: 2rem 0;
  }

  .prices-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .rating-banner {
    padding: 1rem;
    margin: 1rem;
  }

  .invoice-section-inner {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    gap: 32px;
  }

  .info-banner-section,
  .site-footer,
  .owners-section {
    padding-left: 20px;
    padding-right: 20px;

  }

  .footer-rules-highlight {
    height: 150px;
  }

  .pricing-cards-section .row {}

  .pricing-cards-section .col-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

/* ================================
   OFFERS PAGE (offerForu.html)
   ================================ */

/* Variables (offers page) */
.offer-page {
  background: #F8F9FA;
  overflow-x: hidden;
}

/* Header */
.offer-header .navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Hero */
.offer-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.offer-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover no-repeat;
}

.offer-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 46, 60, 0.75) 0%, rgba(26, 46, 60, 0.5) 50%, transparent 100%);
}



.offer-hero-label {
  font-size: 0.9rem;
  color: #D3D3D3;
  margin-bottom: 0.5rem;
}

.offer-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.offer-hero-title-accent {
  color: #87C0EB;
  font-size: clamp(2rem, 5vw, 3rem);
}

.offer-hero-title-main {
  color: #fff;
  font-size: clamp(1.6rem, 5vw, 3.5rem);
  border-bottom: 5px solid #FFA500;
  display: inline-block;
  padding-bottom: 2px;
  line-height: 1.2;
  max-width: 426px;
  width: 100%;
}

.offer-hero-desc {
  color: #D3D3D3;
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 502px;
  width: 100%;
}

.offer-hero-search-wrap {
  max-width: 553px;
  width: 100%;
  border: 1px;
  background-color: #B2DFDB;
  padding: 1rem;
  border-radius: 10px;
}

.offer-hero-search {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 8px;
  border: 1px solid #E9ECEF;
  display: flex;
}

.offer-hero-search-input {
  border: none;
  font-size: 12px;
}

.offer-hero-search-input:focus {
  box-shadow: none;
  outline: none;
}

.offer-hero-search-btn {
  background: #FFA500;
  border: 1px;
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  color: #fff;
  width: 56px;
}

.offer-hero-search-hint {
  margin-top: 0.5rem;
  font-size: 10px;
  padding-left: 20px;
  color: #ffffff;
  display: inline-flex;
  gap: 8px;
}

.offer-hero-available {
  font-weight: 500;
}

.icon-small {
  font-size: 0.9rem;
}

/* Main: Filters + Special Offers */
.offer-main {
  background: #F8F9FA;
  padding: 3rem 1.5rem;
}

.offer-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: transparent;
  padding: 0;
}

.offer-filter-block {
  width: 300px;
  padding: 16px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.offer-filter-header {
  background: #EBF5FD;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  flex-shrink: 0;
  border-radius: 10px;
  margin-bottom: 10px;
}

.offer-filter-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #5BAAD4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.offer-filter-count {
  color: #5BAAD4;
  font-weight: 600;
  font-size: 0.875rem;
}

.offer-filter-body {
  flex: 1;
  overflow: hidden;
}

.offer-filter-body .form-check {
  margin-bottom: 1px;
  padding-left: 1.6rem;
}

.offer-filter-body .form-check-input {
  margin-top: 0.22em;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  width: 1em;
  height: 1em;
  border: 2px solid gray;
  border-radius: 3px;
  background-color: gray;
}

.offer-filter-body .form-check-input:checked {
  background-color: #5BAAD4;
  border-color: #5BAAD4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' d='M6 10l3 3 5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.offer-filter-body .form-check-label {
  color: #343A40;
  font-size: 0.875rem;
  line-height: 1.5;
  cursor: pointer;
}

.offer-filter-cols {
  display: flex;
  gap: 12px;
}

.offer-filter-cols>div {
  flex: 1;
}

.offer-btn-clear {
  background: #FFF3E0;
  color: #FFAA4CCC;
  font-weight: 700;
  border: 1px solid #FFCC80;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  line-height: 24px;
}

.offer-btn-clear:hover {
  background: #FFE0B2;
  color: #E65100;
  border-color: #FFB74D;
}

.offer-explore-label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.offer-section-heading {
  font-size: 35px;
  font-weight: 700;
  color: #4B5563;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #343A40;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.offer-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offer-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  padding: 1.25rem 1.25rem;
}

.offer-card--special {
  flex-direction: row;
}

.offer-card--special .offer-card-img-wrap {
  width: 42%;
  min-height: 220px;
}

.offer-card--special .offer-card-body {
  width: 58%;
  padding: 1.25rem 1.5rem;
}

.offer-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.offer-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 9px;
}

.offer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  color: #fff;
}

.offer-badge--special {
  background: #fd7e14;
}

.offer-badge--activity {
  background: #FFB35A;
}

.offer-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 0.95rem;
}

.offer-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #343A40;
  margin-bottom: 0.25rem;
}

.offer-views-badge {
  background: #5BB2FF;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  white-space: nowrap;
}

.offer-card-location {
  font-size: 0.9rem;
  color: #5BB2FF;
  margin-bottom: 0.5rem;
}

.offer-card-location .bi-geo-alt {
  color: #87C0EB;
}

.offer-card-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}

.offer-old-price {
  font-size: 0.85rem;
  color: #6C757D;
  text-decoration: line-through;
}

.offer-discount-badge {
  background: #E3F2FD;
  color: #6C757D;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
}

.offer-valid {
  background: #E3F2FD;
  font-size: 0.8rem;
  color: #6C757D;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
}

.offer-price {
  font-size: 50px;
  font-weight: 800;
  color: #343A40;
  width: 100%;
}

.offer-btn-view {
  background: #fd7e14;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
}

.offer-btn-view:hover {
  background: #e66f0f;
  color: #fff;
}

/* Promo banner */
.offer-promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  height: 505px;
}

.offer-promo-bg {
  position: absolute;
  inset: 0;
  background: url('../assetsimg/AdBanner.png') center/cover no-repeat;
  margin: 0 10px;
  border-radius: 30px;
}



.offer-promo-content {
  padding: 2rem 0;
}

.offer-promo-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.offer-btn-promo {
  background: #FFA500;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 0.65rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.offer-btn-promo:hover {
  background: #e69500;
  color: #fff;
}

/* All offers Vidzeme */
.offer-vidzeme {
  background: #F8F9FA;
}

.offer-card--compact {
  flex-direction: column;
  height: 100%;
}

.offer-card--compact .offer-card-img-wrap {
  height: 180px;
}

.offer-card--compact .offer-card-body {
  padding: 1.25rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-views-badge--compact {
  font-size: 0.7rem;
  padding: 0.2rem 0.4rem;
}

.offer-price-pills {
  display: flex;
  gap: 6px;
}

.offer-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #E9ECEF;
  border-radius: 10px;
  padding: 7px 13px 7px 7px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

.offer-pill-icon {
  width: 36px;
  height: 36px;
  background: #D0EAFB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5BAAD4;
  font-size: 1rem;
  flex-shrink: 0;
}

.offer-pill-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.offer-pill-label {
  font-size: 0.60rem;
  color: #9CA3AF;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.offer-pill-value {
  font-size: 0.70rem;
  font-weight: 700;
  color: #1A2E3C;
  line-height: 1.2;
}

.offer-pill-value s {
  text-decoration-color: #9CA3AF;
}

/* Vidzeme compact row: scales for 100% zoom (narrow 3-col cards) */
.offer-vidzeme-heading {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  margin-bottom: 0.85rem;
  padding-bottom: 0.35rem;
}

.offer-vidzeme .offer-explore-label {
  font-size: 0.72rem;
  margin-bottom: 0.12rem;
}

.offer-vidzeme .offer-card--compact .offer-card-title {
  font-size: 0.88rem;
  line-height: 1.25;
  min-width: 0;
  flex: 1;
  word-break: break-word;
  margin-bottom: 0;
}

.offer-vidzeme .offer-card--compact .offer-views-badge--compact {
  font-size: 0.6rem;
  padding: 0.1rem 0.32rem;
}

.offer-vidzeme .offer-card--compact .offer-card-img-wrap {
  height: 138px;
}

.offer-vidzeme .offer-card--compact .offer-card-body {
  padding: 0.6rem 0 0;
}

.offer-vidzeme .offer-card--compact .offer-card-location {
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

/* Stack price pills vertically so three fit without horizontal overflow */
.offer-vidzeme .offer-card--compact .offer-price-pills {
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
}

.offer-vidzeme .offer-card--compact .offer-pill {
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  padding: 5px 8px 5px 5px;
  gap: 6px;
  box-sizing: border-box;
}

.offer-vidzeme .offer-card--compact .offer-pill-icon {
  width: 26px;
  height: 26px;
  font-size: 0.78rem;
}

.offer-vidzeme .offer-card--compact .offer-pill-label {
  font-size: 0.52rem;
}

.offer-vidzeme .offer-card--compact .offer-pill-value {
  font-size: 0.65rem;
}

.offer-vidzeme .offer-card--compact .offer-btn-view {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  margin-top: 0.6rem !important;
}

.offer-vidzeme .offer-card--compact .offer-badge {
  font-size: 0.58rem;
  padding: 0.22rem 0.45rem;
  top: 8px;
  left: 8px;
  max-width: calc(100% - 16px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-vidzeme.p-5 {
  padding: 1.65rem 1rem !important;
}

.offer-vidzeme-row {
  --bs-gutter-y: 0.75rem;
}

/* Info cards */
.offer-info-cards {
  background: white;
}

.offer-info-card {
  background: #E9F0FA;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
}

.offer-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: #343A40;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.offer-info-text {
  font-size: 0.95rem;
  color: #6C757D;
  line-height: 1.5;
}

.offer-info-link {
  color: #5143D9;
  font-size: 0.9rem;
  text-decoration: none;
  display: block;
  padding: 0.2rem 0;
}

.offer-info-link:hover {
  color: #0a58ca;
  text-decoration: underline;
}

.offer-info-divider {
  border-left: 2px solid #D1D9E6;
  padding-left: 2rem;
}

.offer-keywords {
  font-size: 0.85rem;
  color: #ADB5BD;
}

/* Footer */
.offer-footer {
  background: #F8F9FA;
  border-top: 1px solid #E9ECEF;
}

.offer-footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #343A40;
  margin-bottom: 0.25rem;
}

.offer-footer-text {
  font-size: 0.95rem;
  color: #6C757D;
}

.offer-btn-footer {
  background: #fd7e14;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
}

.offer-btn-footer:hover {
  background: #e66f0f;
  color: #fff;
}

/* Offers page – Responsive */
/* ── Offer page: Laptop & Tablet (< 992px) ── */
@media (max-width: 991.98px) {

  /* Special offer card: stack image above body */
  .offer-card--special {
    flex-direction: column;
  }

  .offer-card--special .offer-card-img-wrap,
  .offer-card--special .offer-card-body {
    width: 100%;
  }

  .offer-card--special .offer-card-img-wrap {
    min-height: 200px;
  }

  /* Promo banner */
  .offer-promo-banner {
    min-height: 280px;
    margin: 0;
    border-radius: 0;
  }

  /* Hide filter sidebar */
  .offer-main aside {
    display: none;
  }

  /* Full-width content column */
  .offer-main .col-lg-9 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  /* Compact cards: stack pills vertically to prevent overflow */
  .offer-card--compact .offer-price-pills {
    flex-direction: column;
    gap: 5px;
  }

  .offer-card--compact .offer-pill {
    width: fit-content;
  }

  .offer-vidzeme .offer-card--compact .offer-pill {
    width: 100%;
    max-width: 100%;
  }

  .offer-card--compact .offer-card-img-wrap {
    height: 160px;
  }
}

/* ── Offer page: Tablet portrait (768px – 991px) ── */
@media (min-width: 768px) and (max-width: 991.98px) {
  .offer-section-heading {
    font-size: 1.6rem;
  }
}

/* ── Offer page: Mobile (< 768px) ── */
@media (max-width: 767.98px) {

  /* Hero */
  .offer-hero {
    min-height: 50vh;
    padding: 2.5rem 0;
  }

  .offer-hero-desc {
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .offer-hero-search-input {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }

  /* Sections */
  .offer-section-heading {
    font-size: 1.4rem;
  }

  .offer-main {
    padding: 1.5rem 1rem;
  }

  .offer-vidzeme.p-5 {
    padding: 1.5rem 1rem !important;
  }

  .offer-info-cards.p-5 {
    padding: 1.5rem 1rem !important;
  }

  /* Info cards: vertical divider → horizontal */
  .offer-info-divider {
    border-left: none;
    border-top: 2px solid #D1D9E6;
    padding-left: 0;
    padding-top: 1rem;
  }

  .offer-info-card {
    padding: 1.25rem 1rem;
  }

  /* Price pills */
  .offer-pill {
    padding: 6px 10px 6px 6px;
  }

  .offer-pill-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .offer-pill-label {
    font-size: 0.6rem;
  }

  .offer-pill-value {
    font-size: 0.8rem;
  }
}

/* ── Offer page: Small tablet 2-col (576px – 767px) ── */
@media (min-width: 576px) and (max-width: 767.98px) {
  .offer-card--compact .offer-card-img-wrap {
    height: 140px;
  }

  .offer-card--compact .offer-card-body {
    padding: 0.875rem 0;
  }
}

/* ── Offer page: Small phones 320px / 375px / 425px (< 576px) ── */
@media (max-width: 575.98px) {

  /* Hero */
  .offer-hero {
    min-height: 40vh;
    padding: 2rem 0;
  }

  .offer-hero-title-accent,
  .offer-hero-title-main {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

  .offer-hero-desc {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  /* Sections */
  .offer-section-heading {
    font-size: 1.1rem;
    letter-spacing: 0.01em;
  }

  /* Special offer card body */
  .offer-card--special .offer-card-body {
    padding: 1rem;
  }

  .offer-card-title {
    font-size: 0.95rem;
  }

  /* Compact cards: full width (col-12) so pills can be in a row */
  .offer-card--compact .offer-price-pills {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .offer-vidzeme .offer-card--compact .offer-price-pills {
    flex-direction: column !important;
    flex-wrap: nowrap;
    gap: 5px;
  }

  .offer-vidzeme .offer-card--compact .offer-pill {
    width: 100% !important;
    max-width: 100%;
  }

  .offer-card--compact .offer-card-img-wrap {
    height: 200px;
  }

  /* Price pills */
  .offer-price-pills {
    gap: 4px;
  }

  .offer-pill {
    padding: 5px 8px 5px 5px;
  }

  .offer-pill-icon {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }

  .offer-pill-value {
    font-size: 0.75rem;
  }

  /* Info cards */
  .offer-info-title {
    font-size: 0.875rem;
    margin-top: 1rem;
  }

  .offer-info-text {
    font-size: 0.85rem;
  }

  .offer-info-link {
    font-size: 0.8rem;
  }

  .offer-keywords {
    font-size: 0.75rem;
  }
}

/* ================================
   DETAILS PAGE (index.html)
   ================================ */

/* Variables (details page) */
.details-hero-section,
.details-property-section,
.details-gallery-amenities-section,
.details-host-section,
.details-overview-location-section,
.details-community-section,
.details-offers-section {
  background: #F8F9FA;
  padding: 3rem 2rem;
  padding-bottom: 0;
}



/* Hero */


.details-hero-card {
  min-height: 280px;
  position: relative;
}

.details-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(34, 74, 126, 0.65) 0%, rgba(15, 34, 58, 0.4) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600') center/cover no-repeat;
}

.details-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 114, 184, 0.65);
}

.details-hero-content {
  padding: 3rem 2.5rem;
  max-width: 420px;
  z-index: 2;
}

.details-hero-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.25;
  font-family: var(--font-heading);
}

.details-hero-btn {
  background: #F7941D;
  box-shadow: 0 4px 14px rgba(247, 148, 29, 0.4);
  font-size: 1rem;
}

.details-hero-btn:hover {
  background: #e0861a;
  color: #fff;
}

/* Property header + main image */
.details-property-title {
  font-size: 1.75rem;
  font-family: var(--font-heading);
  color: #4B5563;
}

.details-badge-distance {
  background: #5BB2FF;
  font-size: 0.75rem;
  font-weight: 600;
}

.details-main-image-wrap {
  border-radius: 1rem;
  height: 726px;
  position: relative;
  overflow: hidden;
}

/* Make carousel fill the wrapper */
.details-main-image-wrap .carousel,
.details-main-image-wrap .carousel-inner,
.details-main-image-wrap .carousel-item {
  height: 100%;
}

.details-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* The button IS the carousel control — one combined rule */
.details-carousel-btn {
  width: 44px !important;
  height: 44px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  opacity: 1 !important;
  border: none;
  padding: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  /* vertically center in the image area (above the 70px stats bar) */
  top: calc(50% - 35px) !important;
  bottom: auto !important;
  transform: translateY(-50%);
}

button.carousel-control-prev.details-carousel-btn {
  left: 16px !important;
}

button.carousel-control-next.details-carousel-btn {
  right: 16px !important;
}

.details-carousel-btn .carousel-control-prev-icon,
.details-carousel-btn .carousel-control-next-icon {
  /* Bootstrap icons are white SVGs — invert to black so visible on white bg */
  filter: invert(1);
  width: 20px;
  height: 20px;
}

.details-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3rem 1.5rem;
}

.details-stat-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
}

.details-stat-item+.details-stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 1.5rem;
}

.details-stat-icon {
  font-size: 1.5rem;
  opacity: 0.9;
  flex-shrink: 0;
}

.details-stat-number {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--font-heading);
}

.details-stat-label {
  font-size: 0.72rem;
  opacity: 0.85;
  line-height: 1.2;
}

/* Gallery + Amenities */
.details-gallery-img {
  overflow: hidden;
  line-height: 0;
}

.details-gallery-img-inner {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1.5rem;
}

.details-gallery-img-wide {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.details-gallery-img-short {
  width: 100%;
  min-height: 115px;
  object-fit: cover;
  display: block;
}

.details-view-all-overlay {
  background: rgba(0, 0, 0, 0.52);
  border-radius: 0.75rem;
}

.details-video-play {
  pointer-events: none;
}

.details-video-play-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Amenities */
.details-amenities-card .card-title {
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.details-amenity-group+.details-amenity-group {
  border-top: 1px solid #F0F2F5;
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

.details-amenity-category {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6C757D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.details-amenity-cat-icon {
  font-size: 1rem;
  color: #5BB2FF;
}

.details-amenity-item {
  padding: 0.2rem 0;
  color: #343A40;
  font-size: 0.875rem;
}

.details-amenity-check {
  color: #5BB2FF;
  font-weight: 700;
  font-size: 0.95rem;
}

.details-info-card .details-info-icon {
  font-size: 1.25rem;
}

.details-info-card .card-body {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Host card */
.details-host-avatar {
  width: 64px;
  height: 64px;
  border: 2px solid #FFD700;
  flex-shrink: 0;
}

.details-host-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-host-card .card-body hr {
  border-color: #E0E0E0;
}

.details-contact-icon-wrap {
  width: 36px;
  height: 36px;
  background: #E6F2FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Overview + Location */
.details-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #333;
  font-family: var(--font-heading);
  padding-bottom: 0.35rem;
  border-bottom: 5px solid #ff9933;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.details-section-title.text-primary {
  color: #58abed !important;
}

.details-btn-book,
.details-btn-directions {
  background: #ff9933;
  box-shadow: 0 2px 8px rgba(255, 153, 51, 0.35);
}

.details-btn-book:hover,
.details-btn-directions:hover {
  background: #e68a2e;
  color: #fff;
}

.details-map-card {
  border-radius: 1rem;
}


/* Community Favorites – Where To Go / Where To Eat listing cards */
.details-community-heading {
  font-size: 2rem;
  font-family: var(--font-heading);
  padding-bottom: 0.25rem;
  border-bottom: 3px solid #343A40;
  display: inline-block;
}

.details-listing-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 1rem;
}

.details-listing-card .col-md-5 {
  overflow: hidden;
  border-radius: 1rem 0 0 1rem;
}

.details-listing-card .col-md-7 {
  border-radius: 0 1rem 1rem 0;
}

@media (max-width: 767.98px) {
  .details-listing-card .col-md-5 {
    border-radius: 1rem 1rem 0 0;
  }

  .details-listing-card .col-md-7 {
    border-radius: 0;
  }
}

.details-listing-badge {
  background: #FF9F4A;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.85rem;
  border-radius: 0.5rem;
}

.details-listing-action-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: #FFFFFF;
  color: #6C757D;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.details-listing-action-btn:hover {
  background: #F8F9FA;
  color: #495057;
}

.details-listing-action-btn i {
  font-size: 1rem;
}

.details-listing-card-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.details-listing-card-body .details-btn-see {
  align-self: flex-end;
  margin-top: 0.25rem;
}

.details-listing-card-title {
  font-size: 1.25rem;
  color: #212529;
  margin-bottom: 0.5rem;
}

.details-listing-card-body .text-secondary {
  color: #6C757D;
  font-size: 0.95rem;
  line-height: 1.55;
}

.details-listing-tag {
  background: #E0F2F7;
  color: #0D6EFD;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border: 1px solid #D0E8F0;
}

.details-btn-see {
  background: #FF9F4A;
  color: #FFFFFF;
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
}

.details-btn-see:hover {
  background: #E88F3A;
  color: #FFFFFF;
}

.details-listing-img {
  height: 260px;
  object-fit: cover;
  width: 100%;
}

/* All Offers */
.details-offers-heading {
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.details-offer-badge {
  background: #FFB366;
  font-size: 0.75rem;
  font-weight: 700;
}

.details-offer-img {
  height: 200px;
  object-fit: cover;
}

.details-btn-offers {
  background: #FFA500;
}

.details-btn-offers:hover {
  background: #e69500;
  color: #fff;
}

/* Details page responsive */

/* XL screens (1200px – 1399px) */
@media (max-width: 1399.98px) {
  .details-main-image-wrap {
    height: 640px;
  }
}

/* LG / laptop (992px – 1199px) */
@media (max-width: 1199.98px) {
  .details-main-image-wrap {
    height: 520px;
  }

  .details-property-title {
    font-size: 1.5rem;
  }
}

/* MD / tablet landscape (768px – 991px) */
@media (max-width: 991.98px) {

  .details-hero-section,
  .details-property-section,
  .details-gallery-amenities-section,
  .details-host-section,
  .details-overview-location-section,
  .details-community-section,
  .details-offers-section {
    padding: 2rem 1.25rem;
    padding-bottom: 0;
  }

  .details-main-image-wrap {
    height: 420px;
  }

  .details-property-title {
    font-size: 1.35rem;
  }

  /* Gallery: cap tall left image on tablet */
  .details-gallery-img-inner {
    max-height: 260px;
  }

  /* Overview: remove offset so cols sit flush */
  .details-overview-location-section .offset-lg-1 {
    margin-left: 0 !important;
  }

  .details-listing-img {
    height: 240px;
  }
}

/* SM / tablet portrait & large phone (576px – 767px) */
@media (max-width: 767.98px) {

  .details-hero-section,
  .details-property-section,
  .details-gallery-amenities-section,
  .details-host-section,
  .details-overview-location-section,
  .details-community-section,
  .details-offers-section {
    padding: 1.5rem 1rem;
    padding-bottom: 0;
  }

  .details-hero-content {
    padding: 2rem 1.5rem;
  }

  .details-main-image-wrap {
    height: 300px;
  }

  .details-stats-overlay {
    height: auto;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    gap: 0.5rem 1rem;
  }

  .details-carousel-btn {
    top: calc(50% - 40px) !important;
  }

  .details-stat-item {
    flex: 1 1 40%;
  }

  .details-stat-item+.details-stat-item {
    border-left: none;
    padding-left: 0;
  }

  .details-stat-number {
    font-size: 1.1rem;
  }

  /* Gallery: left tall col stacks to full width — cap height */
  .details-gallery-img-inner {
    height: 200px !important;
    max-height: 200px;
  }

  .details-gallery-img-short {
    height: 140px !important;
    min-height: unset;
  }

  /* Overview + Location: stack */
  .details-overview-location-section .offset-lg-1 {
    margin-left: 0 !important;
  }

  /* Community headings */
  .details-community-heading {
    font-size: 1.5rem;
  }

  /* Listing cards: vertical stack */
  .details-listing-card .row {
    flex-direction: column;
  }

  .details-listing-card .col-md-5 {
    border-radius: 1rem 1rem 0 0;
  }

  .details-listing-card .col-md-7 {
    border-radius: 0;
  }

  .details-listing-img {
    height: 200px;
  }
}

/* XS / small phone (< 576px) */
@media (max-width: 575.98px) {

  .details-hero-section,
  .details-property-section,
  .details-gallery-amenities-section,
  .details-host-section,
  .details-overview-location-section,
  .details-community-section,
  .details-offers-section {
    padding: 1.25rem 0.75rem;
    padding-bottom: 0;
  }

  .details-property-title {
    font-size: 1.15rem;
  }

  .details-main-image-wrap {
    height: 240px;
  }

  .details-stats-overlay {
    padding: 0.5rem 0.75rem;
    gap: 0.4rem 0.75rem;
  }

  .details-stat-item {
    flex: 1 1 44%;
  }

  .details-gallery-img-inner {
    height: 165px !important;
    max-height: 165px;
  }

  .details-gallery-img-short {
    height: 115px !important;
    min-height: unset;
  }

  .details-hero-content {
    padding: 1.75rem 1.25rem;
  }

  .details-hero-title {
    font-size: 1.35rem;
  }

  .details-community-heading {
    font-size: 1.2rem;
  }

  .details-listing-card-body {
    padding: 1rem 1.25rem;
  }

  .details-listing-card-title {
    font-size: 1.05rem;
  }

  .details-listing-img {
    height: 170px;
  }

  /* Address card in map: stack items */
  .details-address-card .card-body {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.4rem;
  }
}

/* Very small phones (320px – 424px) */
@media (max-width: 424px) {

  .details-hero-section,
  .details-property-section,
  .details-gallery-amenities-section,
  .details-host-section,
  .details-overview-location-section,
  .details-community-section,
  .details-offers-section {
    padding: 1rem 0.5rem;
    padding-bottom: 0;
  }

  .details-main-image-wrap {
    height: 200px;
  }

  .details-stat-item {
    flex: 1 1 100%;
  }

  .details-stat-item+.details-stat-item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.35rem;
    margin-top: 0.1rem;
  }

  .details-gallery-img-inner {
    height: 140px !important;
    max-height: 140px;
  }

  .details-gallery-img-short {
    height: 100px !important;
    min-height: unset;
  }

  .details-property-title {
    font-size: 1rem;
  }

  .details-hero-title {
    font-size: 1.15rem;
  }

  .details-listing-img {
    height: 150px;
  }

  .details-listing-card-title {
    font-size: 0.95rem;
  }

  .details-map-card {
    height: auto;
  }

  .details-map-card .details-map-placeholder {
    height: 240px !important;
  }
}

/* ================================
   FEATURED STORIES PAGE
   ================================ */

/* Stories Hero - Discover the Baltics */
.stories-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 4rem;
  overflow: hidden;
}

.stories-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assetsimg/featuredStoriesHero.png') center/cover no-repeat;
}

.stories-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 30, 48, 0.85) 0%, rgba(23, 30, 48, 0.5) 40%, transparent 70%);
}

.stories-hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.stories-hero-title-line1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #5192D4;
  margin-bottom: 0.15em;
  display: block;
}

.stories-hero-title-line1 .stories-hero-underline {
  display: block;
  width: 18rem;
  height: 4px;
  background: #F7931E;
  border-radius: 2px;
  margin-top: 0.1em;
}

.stories-hero-title-line2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.2em;
  display: block;
}

.stories-hero-title-line2 .stories-hero-underline {
  display: block;
  width: 10rem;
  height: 4px;
  background: #F7931E;
  border-radius: 2px;
  margin-top: 0.1em;
}

.stories-hero-desc {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.stories-hero-search-wrap {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  max-width: 560px;
}

.stories-hero-search-input {
  flex: 1;
  border: none;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  color: #212529;
}

.stories-hero-search-input::placeholder {
  color: #6C757D;
}

.stories-hero-search-btn {
  background: #F7931E;
  border: none;
  padding: 0.9rem 1.25rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stories-hero-search-btn i {
  font-size: 1.25rem;
}

.stories-hero-hint {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #CED4DA;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stories-hero-hint-sep {
  color: #ADB5BD;
  font-size: 0.5rem;
}

/* Featured Stories section */
.stories-featured-section {
  padding: 3rem;
  padding-bottom: 0;
  background: #F8F9FA;
}

.stories-featured-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #343A40;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  display: block;
  width: 100%;
}

.stories-featured-heading-stories {
  position: relative;
}

.stories-featured-heading .stories-featured-underline {
  display: block;
  width: 17rem;
  height: 4px;
  background: #FF9800;
  border-radius: 2px;
  margin: 0.2rem auto 0;
}

.stories-featured-badge-e {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #0D6EFD;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.stories-featured-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.stories-featured-card .row {
  margin: 0;
}

.stories-featured-card-img-wrap {
  position: relative;
  padding: 1.5rem;
  max-height: 328px
}

.stories-featured-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.stories-featured-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: #FFC107;
  color: #343A40;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.stories-featured-card-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.stories-featured-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #343A40;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.stories-featured-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.stories-featured-card-meta .location {
  color: #0D6EFD;
}

.stories-featured-card-meta .date {
  color: #6C757D;
}

.stories-featured-card-desc {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.stories-featured-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stories-featured-card-tags .badge {
  background: #E9ECEF;
  color: #495057;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}

.stories-featured-btn-read {
  background: #FF9800;
  color: #FFFFFF;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: none;
  align-self: flex-start;
}

.stories-featured-btn-read:hover {
  background: #F57C00;
  color: #FFFFFF;
}

.stories-featured-card-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.stories-featured-card-actions .btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #ADB5BD;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Stories listing: sidebar + grid */
.stories-listing-section {
  padding: 2rem 0 3rem;
}

.stories-filters-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stories-filter-block {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.stories-filter-header {
  background: #EBF5FD;
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stories-filter-body {
  padding: 0.85rem 1rem;
}

.stories-filter-body .form-check {
  margin-bottom: 0.3rem;
}

.stories-filter-body .form-check-label {
  font-size: 0.875rem;
  color: #495057;
}

.stories-filter-cols {
  display: flex;
  gap: 1rem;
}

.stories-filter-cols>div {
  flex: 1;
}

.stories-filter-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #5BAAD4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stories-filter-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: #5BAAD4;
  background: #D6EEFA;
  border-radius: 50px;
  padding: 0.1rem 0.5rem;
}

.stories-filter-badge {
  background: #0D6EFD;
  color: #FFFFFF;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
}

.stories-filter-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
}

.stories-filter-list li {
  font-size: 0.9rem;
  color: #495057;
}

.stories-btn-clear {
  background: #FFF3E8;
  color: #FF8C00;
  font-weight: 600;
  border: 1.5px solid #FFD9B0;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.stories-btn-clear:hover {
  background: #FFE5CC;
  color: #E67E00;
  border-color: #FFBB77;
}

.stories-promo-banner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 320px;
  background: #E9ECEF;
  height: 868px;
}

.stories-promo-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../assetsimg/reviewHero.png') center/cover no-repeat;
}

.stories-promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.stories-promo-banner-content {
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}

.stories-promo-banner-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.stories-promo-banner-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #F7931E;
  border: none;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
}

.stories-promo-banner-btn:hover {
  color: #FFFFFF;
  background: #E0861a;
}

.stories-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #FF9800;
}

.stories-grid-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #343A40;
  margin: 0;
}

.stories-grid-count {
  font-size: 0.95rem;
  color: #6C757D;
}

.stories-grid-card {
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stories-grid-card-img-wrap {
  position: relative;
  padding: 1rem;
}

.stories-grid-card-img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.stories-grid-card-actions {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.3rem;
}

.stories-grid-action-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #495057;
  cursor: pointer;
  line-height: 1;
}

.stories-grid-action-btn:hover {
  background: #fff;
  color: #343a40;
}

.stories-grid-card-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: #FF8C00;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.stories-grid-card-body {
  padding: 0.9rem 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.stories-grid-card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.stories-grid-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #343A40;
  margin-bottom: 0;
  line-height: 1.3;
}

.stories-grid-card-location {
  font-size: 0.82rem;
  color: #5BB2FF;
  margin-bottom: 0.5rem;
}

.stories-grid-card-likes {
  background: #E7F1FF;
  color: #0D6EFD;
  font-size: 0.72rem;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.stories-grid-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.stories-grid-card-tags .badge {
  background: #E9ECEF;
  color: #495057;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  font-weight: 500;
}

.stories-grid-card-desc {
  font-size: 0.85rem;
  color: #495057;
  line-height: 1.45;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.stories-grid-btn-read {
  background: #FF9800;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
  width: 100%;
}

.stories-grid-btn-read:hover {
  color: #FFFFFF;
  background: #F57C00;
}

.stories-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.stories-pagination .pagination {
  gap: 8px;
}

.stories-pagination .page-link {
  border-radius: 8px !important;
  color: #343A40;
  border: 1.5px solid #DEE2E6;
  padding: 0.45rem 0.8rem;
  font-size: 0.875rem;
  line-height: 1.4;
  background: #fff;
}

.stories-pagination .page-link:hover {
  background: #F8F9FA;
  border-color: #CED4DA;
  color: #343A40;
}

.stories-pagination .page-item.active .page-link {
  background: #FF9800;
  border-color: #FF9800;
  color: #FFFFFF;
}

.stories-pagination .page-item.stories-page-nav .page-link {
  background: #fff;
  border: 1.5px solid #DEE2E6;
  color: #495057;
}

.stories-pagination .page-item.stories-page-nav .page-link:hover {
  background: #F8F9FA;
  color: #343A40;
}

/* Featured Stories Responsive */

/* ≤ 1199px — reduce section padding */
@media (max-width: 1199.98px) {
  .stories-listing-section {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

/* ≤ 991px — tablet/laptop: hide sidebar, full-width content */
@media (max-width: 991.98px) {
  .stories-hero {
    min-height: 55vh;
    padding: 3.5rem 0 2.5rem;
  }

  .stories-featured-section {
    padding: 2rem 1.5rem 0;
  }

  .stories-listing-section {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .stories-listing-section aside {
    display: none !important;
  }

  .stories-listing-section .col-lg-9 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .stories-featured-section .container,
  .stories-featured-section>div {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .stories-featured-card .stories-featured-card-img-wrap {
    max-height: 260px;
  }

  .stories-featured-card-img {
    min-height: 260px;
  }
}

/* 768px–991px — keep featured card horizontal */
@media (min-width: 768px) and (max-width: 991.98px) {
  .stories-featured-card .row {
    flex-direction: row;
  }
}

/* ≤ 767px — small tablet */
@media (max-width: 767.98px) {
  .stories-hero {
    min-height: auto;
    padding: 2.5rem 0 2rem;
  }

  .stories-featured-section {
    padding: 1.5rem 1rem 0;
  }

  .stories-listing-section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .stories-filter-cols {
    flex-direction: column;
    gap: 0;
  }

  .stories-featured-card .row {
    flex-direction: column;
  }

  .stories-featured-card-img {
    min-height: 200px;
    max-height: 220px;
    object-fit: cover;
  }

  .stories-featured-card-body {
    padding: 1rem 1.25rem;
  }

  .stories-featured-card-title {
    font-size: 1.05rem;
  }

  .stories-featured-card-desc {
    font-size: 0.875rem;
  }

  .stories-grid-card-img {
    height: 155px;
  }

  .stories-grid-card-title {
    font-size: 0.9rem;
  }

  .stories-grid-card-body {
    padding: 0.75rem 0.875rem;
  }

  .stories-grid-card-desc {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .stories-grid-card-badge {
    font-size: 0.62rem;
    padding: 0.2rem 0.45rem;
  }

  .stories-grid-card-likes {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
  }

  .stories-pagination .page-link {
    padding: 0.4rem 0.7rem;
    font-size: 0.82rem;
  }
}

/* ≤ 575px — phones 320px–575px: single-column cards */
@media (max-width: 575.98px) {
  .stories-hero {
    padding: 2rem 0 1.5rem;
  }

  .stories-featured-section {
    padding: 1.25rem 0.75rem 0;
  }

  .stories-listing-section {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  /* grid cards → full width */
  .stories-listing-section .col-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .stories-grid-card-img {
    height: 200px;
  }

  .stories-grid-card-title {
    font-size: 1rem;
  }

  .stories-grid-card-body {
    padding: 0.875rem 1rem;
  }

  .stories-grid-card-desc {
    font-size: 0.83rem;
  }

  .stories-grid-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .stories-featured-section>div {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .stories-featured-heading {
    font-size: clamp(1.25rem, 6vw, 2rem);
  }

  .stories-featured-card-body {
    padding: 0.875rem;
  }

  .stories-featured-card-title {
    font-size: 1rem;
  }

  .stories-featured-card-desc {
    font-size: 0.82rem;
  }

  .stories-pagination {
    margin-top: 1.5rem;
  }

  .stories-pagination .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stories-pagination .page-link {
    padding: 0.35rem 0.6rem;
    font-size: 0.78rem;
  }
}

/* ================================
   BLOG PAGE (blog.html)
   Variables / Global
   ================================ */
.blog-page {
  background: #F8F8FA;
  overflow-x: hidden;
}

/* Header */
.blog-header .navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Hero */
.blog-hero {
  padding: 2rem;
}

.blog-hero-inner {
  height: 639px;
  display: flex;
  align-items: flex-end;
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/blogHero.png') center/cover no-repeat;
}

.blog-hero-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem 2rem;
  max-width: 1098px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.blog-hero-tag {
  display: inline-block;
  background: #E0F2F7;
  color: #0D6EFD;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}

.blog-hero-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-hero-desc {
  font-size: 1rem;
  color: #6C757D;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.blog-hero-meta {
  font-size: 0.9rem;
}

.blog-hero-avatar {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.blog-hero-author {
  color: #212529;
  font-weight: 500;
}

.blog-hero-date {
  color: #ADB5BD;
}

.blog-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #343A40;
  font-size: 1.25rem;
  z-index: 2;
}

.blog-hero-nav--prev {
  left: 1rem;
}

.blog-hero-nav--next {
  right: 1rem;
}

/* Section1: Article body */
.blog-article {
  background: #F8F8FA;
  padding: 2rem;
  padding-top: 0;
}

.blog-article-body {
  max-width: 900px;
  margin: 0 auto;
}

.blog-drop-cap {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-drop-cap-letter {
  float: left;
  display: block;
  background: #E6E6F2;
  color: #376092;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.1em 0.15em 0 0;
  margin-right: 0.1em;
  border-radius: 6px;
}

.blog-article-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin: 2rem 0 1.5rem;
  padding: 0;
}

.blog-article-body p {
  color: #333;
  margin-bottom: 1rem;
}

.blog-article-list {
  color: #333;
  margin: 1rem 0;
  padding-left: 1.25rem;
}

.blog-article-list li {
  margin-bottom: 0.5rem;
}

.blog-article-img-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  height: 340px;
  width: 100%;
  max-width: 505px;
}

.blog-article-img {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-pin-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 48px;
  height: 56px;
  background: #286bcc;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.blog-pin-icon-e {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #66a3ed;
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 24px;
}

/* Section2: Quote + Author + More stories */
.blog-quote-section {
  background: #F8F8FA;
  padding: 2rem;
}

.blog-quote-card {
  background: #e7f2ff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 2px 8px rgba(39, 107, 204, 0.08);
}

.blog-quote-open,
.blog-quote-close {
  font-size: 3rem;
  color: #286bcc;
  line-height: 1;
  font-family: Georgia, serif;
}

.blog-quote-open {
  display: block;
  margin-bottom: -0.5rem;
}

.blog-quote-close {
  display: block;
  text-align: right;
}

.blog-quote-text {
  color: #286bcc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0.5rem 0;
}

.blog-quote-attribution {
  color: #FFAA4C;
  font-size: 1rem;
  text-align: center;
  margin: 1rem 0 0;
}

.blog-body-text {
  color: #333333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 900px;
}

.blog-author-card {
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-top: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e7f2ff;
}

.blog-author-avatar {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.blog-author-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #286bcc;
}

.blog-author-role {
  font-size: 0.9rem;
  color: #666666;
}

.blog-author-bio {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.5;
}

.blog-btn-articles {
  background: #ff9933;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  box-shadow: 0 2px 8px rgba(255, 153, 51, 0.3);
}

.blog-btn-articles:hover {
  background: #e68a2e;
  color: #fff;
}

/* More Stories */
.blog-more-stories {
  background: #F8F9FA;
  padding: 2rem;
}

.blog-stories-subtitle {
  font-size: 0.8rem;
  color: #6C757D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.blog-stories-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #343A40;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #343A40;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.blog-story-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-story-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog-story-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-story-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #FF9800;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.blog-story-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-story-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #343A40;
  margin-bottom: 0.25rem;
}

.blog-story-views {
  background: #5BB2FFCC;
  color: white;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  white-space: nowrap;
}

.blog-story-location {
  font-size: 0.9rem;
  color: #007BFF;
  margin-bottom: 0.5rem;
}

.blog-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.blog-story-tag-pill {
  background: #E3F2FD;
  color: black;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
}

.blog-story-desc {
  font-size: 0.9rem;
  color: #6C757D;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-btn-read {
  background: #FF9800;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1rem;
}

.blog-btn-read:hover {
  background: #e68a00;
  color: #fff;
}

.blog-feedback-box {
  background: #E0F2F7;
  border-radius: 10px;
  padding: 1rem 4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 4rem;
}

.blog-feedback-question {
  font-size: 1rem;
  color: #6C757D;

}

.blog-feedback-count {
  font-size: 0.9rem;
  color: #6C757D;
}

.blog-feedback-group {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  overflow: hidden;
}

.blog-feedback-divider {
  width: 1.5px;
  background: #CBD5E1;
  flex-shrink: 0;
}

.blog-btn-feedback {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: none;
  background: transparent;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s;
}

.blog-btn-feedback--yes {
  color: #E84B3A;
}

.blog-btn-feedback--yes:hover {
  background: #FFF0EE;
}

.blog-btn-feedback--no {
  color: #28A745;
}

.blog-btn-feedback--no:hover {
  background: #EDFFF2;
}

/* Footer */
.blog-footer {
  background: #F8F9FA;
  border-top: 1px solid #E9ECEF;
}

.blog-footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #343A40;
  margin-bottom: 0.25rem;
}

.blog-footer-text {
  font-size: 0.95rem;
  color: #6C757D;
}

/* Blog Responsive */

/* LG / laptop (992px – 1199px) */
@media (max-width: 1199.98px) {
  .blog-hero-inner {
    height: 520px;
  }

  .blog-article-img-wrap {
    max-width: 100%;
  }
}

/* MD / tablet landscape (768px – 991px) */
@media (max-width: 991.98px) {
  .blog-hero {
    padding: 1.5rem;
  }

  .blog-hero-inner {
    height: 400px;
  }

  .blog-hero-card {
    max-width: 100%;
  }

  .blog-hero-card-wrap {
    left: 40px !important;
  }

  .blog-article,
  .blog-quote-section,
  .blog-more-stories {
    padding: 1.5rem;
  }

  .blog-feedback-box {
    margin: 1.5rem 1.5rem;
    padding: 1rem 2rem;
  }
}

/* SM / tablet portrait & large phone (576px – 767px) */
@media (max-width: 767.98px) {
  .blog-hero {
    padding: 1rem;
  }

  .blog-hero-inner {
    height: 300px;
  }

  .blog-hero-card-wrap {
    left: 12px !important;
    top: -70px !important;
    margin-bottom: -70px !important;
  }

  .blog-hero-card {
    padding: 1.25rem 1.5rem;
    max-width: 100%;
  }

  .blog-hero-title {
    font-size: 1.35rem;
  }

  .blog-hero-desc {
    font-size: 0.9rem;
  }

  .blog-hero-nav {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .blog-hero-nav--prev {
    left: 0.5rem;
  }

  .blog-hero-nav--next {
    right: 0.5rem;
  }

  .blog-article,
  .blog-quote-section,
  .blog-more-stories {
    padding: 1.25rem 1rem;
  }

  .blog-drop-cap-letter {
    font-size: 3rem;
  }

  .blog-article-heading {
    font-size: 1.25rem;
  }

  .blog-article-img-wrap {
    height: 260px;
    max-width: 100%;
  }

  /* Quote section body text: full width on mobile */
  .blog-quote-section>div>div[style] {
    max-width: 100% !important;
  }

  .blog-quote-card {
    padding: 1.5rem;
  }

  .blog-quote-text {
    font-size: 1rem;
  }

  .blog-author-card {
    padding: 1.25rem;
  }

  .blog-stories-title {
    font-size: 1.4rem;
  }

  /* Feedback box: stack items vertically */
  .blog-feedback-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
  }
}

/* XS / small phone (< 576px) */
@media (max-width: 575.98px) {
  .blog-hero {
    padding: 0.75rem;
  }

  .blog-hero-inner {
    height: 240px;
  }

  .blog-hero-card-wrap {
    left: 8px !important;
    top: -60px !important;
    margin-bottom: -60px !important;
  }

  .blog-hero-card {
    padding: 1rem;
    border-radius: 1rem;
  }

  .blog-hero-title {
    font-size: 1.15rem;
  }

  .blog-hero-desc {
    display: none;
  }

  .blog-article,
  .blog-quote-section,
  .blog-more-stories {
    padding: 1rem 0.75rem;
  }

  .blog-drop-cap-letter {
    font-size: 2.5rem;
  }

  .blog-article-img-wrap {
    height: 200px;
  }

  .blog-story-card-img-wrap {
    height: 160px;
  }

  /* More stories: full width single card on xs */
  .blog-more-stories .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .blog-feedback-box {
    padding: 1rem;
    margin: 1rem 0;
  }

  .blog-stories-title {
    font-size: 1.2rem;
  }
}

/* Very small phones (320px – 424px) */
@media (max-width: 424px) {
  .blog-hero-inner {
    height: 200px;
  }

  .blog-hero-card-wrap {
    top: -50px !important;
    margin-bottom: -50px !important;
  }

  .blog-hero-card {
    padding: 0.85rem;
  }

  .blog-hero-title {
    font-size: 1rem;
  }

  .blog-hero-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }

  .blog-article-heading {
    font-size: 1.1rem;
  }

  .blog-article-img-wrap {
    height: 170px;
  }

  .blog-story-card-img-wrap {
    height: 140px;
  }

  .blog-quote-text {
    font-size: 0.9rem;
  }

  .blog-author-name {
    font-size: 1.05rem;
  }

  .blog-btn-feedback {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
  }
}

/* ================================
   TERMS OF SERVICE PAGE
   ================================ */
.terms-page {
  background: #FFFFFF;
}

.terms-main {
  padding: 3rem 0 4rem;
}

.terms-container {
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.terms-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #343A40;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.terms-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: #343A40;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.terms-title-underline {
  width: 350px;
  height: 35px;
  border-bottom: 6px solid #FFAA4C;
  border-radius: 50%;
  margin: 0.5rem auto 1rem;
  transform: rotate(180deg);
}

.terms-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: #343A40;
  margin-bottom: 2rem;
}

.terms-content {
  margin-top: 4rem;
}

.terms-paragraph {
  font-size: 1rem;
  line-height: 1.65;
  color: #6C757D;
  margin-bottom: 1.25rem;
}

.terms-list {
  list-style: none;
  padding-left: 10px;
  margin: 1.5rem 0;
}

.terms-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #6C757D;
}

.terms-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #6C757D;
  font-weight: bold;
}

.terms-link {
  color: #0D6EFD;
  text-decoration: underline;
}

.terms-link:hover {
  color: #0A58CA;
}

.terms-btn-secondary {
  background: #F8F9FA;
  color: #343A40;
  border: 1px solid #DEE2E6;
  border-radius: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  min-width: 10rem;
}

.terms-btn-secondary:hover {
  background: #E9ECEF;
  color: #343A40;
  border-color: #DEE2E6;
}

.terms-btn-primary {
  background: #FD7E14;
  color: #FFFFFF;
  border: none;
  border-radius: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  min-width: 10rem;
}

.terms-btn-primary:hover {
  background: #E66F0F;
  color: #FFFFFF;
}

@media (width>=319px) and (width<=424px) {
  .terms-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575.98px) {
  .terms-title {
    font-size: 1.75rem;
  }

  .terms-actions {
    flex-direction: column;
  }

  .terms-btn-secondary,
  .terms-btn-primary {
    width: 100%;
    max-width: 20rem;
  }
}

/* ================================
   PRIVACY POLICY PAGE (privacyPolicy.html)
   ================================ */

/* Variables / Global */
.privacy-page {
  background: #f8f9fa;
}

/* Header */
.privacy-header .navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Hero */
.privacy-hero {
  background: #f8f9fa;
}

.privacy-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0;
}

.privacy-title-underline {
  width: 300px;
  height: 8px;
  background: #fd7e14;
  margin: 0.75rem auto 0;
  border-radius: 10%;
  transform: rotate(-3deg);
}

/* Sections */
.privacy-section {
  background: #f8f9fa;
  padding: 1.75rem 2rem;
}

.privacy-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #343a40;
  padding-left: 10px
}

.privacy-text {
  font-size: 1rem;
  color: #6c757d;
  line-height: 24px;
  margin-bottom: 1rem;
}

.privacy-checklist {
  margin: 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.privacy-checklist-item::before {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

.privacy-checklist-item--check::before {
  content: '✓';
  background: #5BB2FF;
}

.privacy-checklist-item--cross::before {
  content: '✕';
  background: #5BB2FF;
}

.privacy-bullet-list {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.5;
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-bullet-list li {
  margin-bottom: 0.5rem;
}

.privacy-link {
  color: #0d6efd;
  text-decoration: underline;
}

.privacy-link:hover {
  color: #0a58ca;
}

.privacy-alert {
  background: #FFAA4C1A;
  border-radius: 8px;
  padding: 16px;
  margin-top: 2rem;
}

.privacy-alert-text {
  font-size: 1rem;
  color: #FFAA4C;
  line-height: 1.5;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

/* Section2: policy blocks */
.privacy-policy-block {
  background: #f8f9fa;
  border-radius: 0;
  padding: 0 2rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-block-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #343a40;
  padding-left: 10px;
}

.privacy-block-hr {
  border: none;
  border-top: 1px solid #dee2e6;
  margin: 0 0 1.25rem;
}

.privacy-policy-block .privacy-bullet-list {
  margin-bottom: 0;
}



/* Privacy Responsive */
@media (max-width: 767.98px) {
  .privacy-main-title {
    font-size: 1.75rem;
  }

  .privacy-section-title {
    font-size: 1.5rem;
  }

  .privacy-policy-block {
    padding: 1.25rem 1rem;
  }
}

/* ================================
   ALL REVIEWS PAGE (AllReviews.html)
   ================================ */

.reviews-page {
  background: #F8F9FA;
}

.reviews-header .navbar .container {
  flex-wrap: wrap;
}

.reviews-header-label {
  margin-left: 1rem;
}

.reviews-search-input-wrap {
  max-width: 220px;
  background: #F8F9FA;
  border-radius: 0.5rem;
  overflow: hidden;
}

.reviews-search-input {
  background: transparent;
  font-size: 0.9rem;
}

.reviews-search-btn {
  background: transparent;
}

.reviews-main {
  padding: 2rem 0 3rem;
}

.reviews-sidebar {
  position: sticky;
  top: 1rem;
}

.reviews-map-card .reviews-map-wrap {
  width: 300px;
  height: 268px;
  background-color: var(--section-bg);
}

.reviews-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  border-radius: 25px;
}

.reviews-map-pin {
  width: 28px;
  height: 36px;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 36'%3E%3Cpath fill='%23FFC107' stroke='%23fff' stroke-width='2' d='M12 0C5.4 0 0 5.4 0 12c0 9 12 24 12 24s12-15 12-24C24 5.4 18.6 0 12 0z'/%3E%3Ccircle fill='%23fff' cx='12' cy='12' r='5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.reviews-btn-directions {
  background: #FF9933;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0.4rem;
  padding: 0.4rem 0.75rem;
}

.reviews-btn-directions:hover {
  background: #E88A2E;
  color: #FFFFFF;
}

.reviews-filter-card-header {
  background: #EBF5FF;
  color: #5BB2FF;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.65rem 1rem;
  border-radius: 10px;
}

.reviews-filter-count {
  font-weight: 600;
  color: #5BB2FF;
}

.reviews-filter-card {
  padding: 1rem;
}

.reviews-filter-card .card-body {
  padding: 0.85rem;
}

.reviews-filter-card .form-control-sm {
  border-radius: 0.4rem;
  border: 1px solid #dee2e6;
  font-size: 0.8rem;
  color: #495057;
  background-color: #ffffff;
}

.reviews-filter-card .form-label {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
}

.reviews-filter-card .form-control-sm::placeholder {
  color: #adb5bd;
  font-size: 0.78rem;
}

.reviews-filter-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0;
}

.reviews-filter-list li {
  font-size: 0.9rem;
  color: #333;
}

.reviews-filter-input {
  border-radius: 14px;
  border: 1px solid black;
  font-size: 1rem;
  height: 50px;
  margin-bottom: 10px;
}

.reviews-btn-search {
  background: #FF9933;
  color: #FFFFFF;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
}

.reviews-btn-search:hover {
  background: #E88A2E;
  color: #FFFFFF;
}

.reviews-btn-map {
  background: #FFFFFF;
  color: #FF9933;
  border: 1px solid #FF9933;
  font-weight: 500;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
}

.reviews-btn-map:hover {
  background: #FFF5EB;
  color: #FF9933;
  border-color: #FF9933;
}

.reviews-btn-clear-filters {
  background: #FFF0E0;
  color: #FF9933;
  font-weight: 500;
  border: 1px solid #FFD4A8;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.reviews-btn-clear-filters:hover {
  background: #FFD4B0;
  color: #FF7A00;
}

.reviews-promo-card {
  height: 800px;
  background: #E9ECEF;
}

.reviews-promo-bg {
  position: absolute;
  inset: 0;
  background: url('../images/reviewHero.png') center/cover no-repeat;
}

.reviews-promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 50%);
}

.reviews-promo-content {
  padding: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  bottom: 0;
  gap: 8px;
}

.reviews-promo-title {
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 1rem;
  width: fit-content;
}

.reviews-promo-btn {
  margin: auto 0;
  width: 3rem;
  height: 3rem;
  background: #FFA500;
  border: none;
  align-self: flex-end;
  box-shadow: 0 2px 10px rgba(255, 165, 0, 0.4);
}

.reviews-promo-btn:hover {
  background: #E69500;
  border-radius: 20px;
}

.reviews-section-label {
  font-size: 0.72rem;
  color: #9CA3AF;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.reviews-page-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #343A40;
  display: inline-block;
  border-bottom: 3px solid #343A40;
  padding-bottom: 4px;
}

.reviews-content-search-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #E9ECEF;
  border-radius: 0.75rem;
  overflow: hidden;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 4px;
  gap: 4px;
}

.reviews-content-search-input {
  border: none;
  background: transparent;
  font-size: 0.9rem;
  padding: 0.45rem 0.75rem;
  flex: 1;
  min-width: 0;
  box-shadow: none !important;
  outline: none;
}

.reviews-content-search-btn {
  background: #FFA500;
  border: none;
  border-radius: 0.5rem;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.reviews-content-search-btn:hover {
  background: #E65100;
}

.reviews-review-card {
  background: #FFFFFF;
}

.reviews-review-card .col-md-5 {
  overflow: hidden;
  padding: 1rem;
}

.reviews-review-img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.reviews-review-badge {
  background: #FFA500;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.75rem;
  border-radius: 0.4rem;
}

.reviews-review-action-btn {
  width: 2rem;
  height: 2rem;
  background: transparent;
  color: #9CA3AF;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.reviews-review-action-btn:hover {
  color: #343A40;
}

.reviews-review-body {
  padding: 1.25rem 1.5rem;
}

.reviews-review-title {
  font-size: 1.15rem;
  color: #212529;
}

.reviews-verified-badge {
  background: #28A745;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem 0.3rem 0.3rem;
}

.reviews-verified-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.reviews-review-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #6C757D;
}

.reviews-btn-yes {
  background: #fff;
  color: #28A745;
  border: 1.5px solid #28A745;
  border-radius: 0.5rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.reviews-btn-yes:hover {
  background: #28A745;
  color: #fff;
}

.reviews-btn-no {
  background: #fff;
  color: #DC3545;
  border: 1.5px solid #DC3545;
  border-radius: 0.5rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.reviews-btn-no:hover {
  background: #DC3545;
  color: #fff;
}

/* ── Pagination ── */
.reviews-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: #6C757D;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s, color 0.15s;
}

.reviews-page-btn--active {
  background: #FFA500;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
}

.reviews-page-btn--nav {
  border: 1.5px solid #E9ECEF;
  color: #9CA3AF;
  background: #fff;
}

.reviews-page-btn:hover:not(.reviews-page-btn--active) {
  background: #F3F4F6;
  color: #343A40;
}

.reviews-page-btn--nav:hover {
  border-color: #CED4DA;
  color: #495057;
}

/* ── Reviews page: Tablet & below (< 992px) ── */
@media (max-width: 991.98px) {
  .reviews-sidebar {
    position: static;
  }

  .reviews-main.p-5 {
    padding: 2rem 1.5rem !important;
  }
}

/* ── Reviews page: Mobile (< 768px) ── */
@media (max-width: 767.98px) {
  .reviews-main.p-5 {
    padding: 1.5rem 1rem !important;
  }

  /* Hide sidebar on mobile — show content full width */
  .reviews-main aside {
    display: none;
  }

  .reviews-main .col-lg-9 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  /* Review card: stack image above body */
  .reviews-review-card .row {
    flex-direction: column;
  }

  .reviews-review-card .col-md-5 {
    border-radius: 0.5rem 0.5rem 0 0;
  }

  .reviews-review-img {
    height: 220px;
  }

  .reviews-filter-list {
    grid-template-columns: 1fr;
  }

  /* Title + search row: stack vertically */
  .reviews-main .d-flex.justify-content-between.align-items-end {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .reviews-content-search-wrap {
    max-width: 100%;
    width: 100%;
  }

  /* Page title */
  .reviews-page-title {
    font-size: 1.4rem;
  }

  /* Review card body */
  .reviews-review-body {
    padding: 1rem;
  }

  .reviews-review-title {
    font-size: 1rem;
  }
}

/* ── Reviews page: Small phones 320px / 375px / 425px (< 576px) ── */
@media (max-width: 575.98px) {
  .reviews-main.p-5 {
    padding: 1rem 0.75rem !important;
  }

  .reviews-search-input-wrap {
    max-width: 100%;
  }

  .reviews-review-img {
    height: 180px;
  }

  .reviews-review-body {
    padding: 0.875rem;
  }

  .reviews-review-title {
    font-size: 0.95rem;
  }

  .reviews-page-title {
    font-size: 1.25rem;
  }

  /* Capacity/Sleeps + Yes/No: stack on very small */
  .reviews-review-card .d-flex.justify-content-between.align-items-end {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.75rem;
  }

  /* Pagination: smaller buttons */
  .reviews-page-btn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
    border-radius: 8px;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
  font-family: var(--font-body, 'Open Sans', sans-serif);
}




.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero-title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 2.25rem;
  letter-spacing: -0.02em;
}

.contact-hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

.contact-intro {
  padding-top: 48px;
  padding-bottom: 48px;
  background: white;
  padding-left: 70px;
  padding-right: 70px;
}

/* Contact Intro */
.contact-intro-title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 3rem;
  color: #4B5563;
  margin-left: 0;
  margin-right: auto;
}

.contact-intro-desc {
  font-size: 20px;
  line-height: 1.6;
  color: #747579;
  margin-left: 0;
  margin-right: auto;
}

/* Contact method cards */
.contact-method-card {
  background: #fff;
  border: 3px solid black;
  border-radius: 0.5rem;
  box-shadow: 24px 24px 24px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  overflow: visible;
}

.contact-star-deco {
  position: absolute;
  top: -18px;
  right: -14px;
  width: 52px;
  height: 52px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}

.contact-method-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
}

.contact-method-icon--phone i {
  color: #0d6efd !important;
}

.contact-method-icon--email i {
  color: #dc3545 !important;
}

.contact-method-icon--social i {
  color: #fd7e14 !important;
}

.contact-method-title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 1.125rem;
  color: #343a40;
}

.contact-method-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6c757d;
}

.contact-btn-outline {
  border: 1px solid #0d6efd;
  color: #0d6efd;
  background: transparent;
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
}

.contact-btn-outline:hover {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.contact-btn-orange {
  background: #fd7e14;
  color: #fff;
  border: none;
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
}

.contact-btn-orange:hover {
  background: #e96b00;
  color: #fff;
}

.contact-email-link {
  color: #0d6efd;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}

.contact-email-link:hover {
  color: #0a58ca;
  text-decoration: underline;
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  color: inherit;
}

.contact-social-btn:hover {
  background: #e9ecef;
  border-color: #ced4da;
}

/* Contact form section */
.contact-form-section {
  background: #fff;
}

.contact-illustration-wrap {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-illustration-img {
  max-height: 380px;
  object-fit: contain;
  border-radius: 0.5rem;
}

.contact-badge {
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #343a40;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.contact-badge--awards {
  top: 10%;
  left: 0;
}

.contact-badge--reviews {
  bottom: 25%;
  left: 0;
}

.contact-badge--e {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  left: 50%;
  bottom: 35%;
  transform: translateX(-50%);
}

.contact-badge--explore {
  right: 0;
  bottom: 15%;
  white-space: normal;
  max-width: 160px;
}

/* Contact form card */
.contact-form-card {
  background: #e9f7fe;
  position: relative;
}

.contact-form-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #fd7e14 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.4;
  pointer-events: none;
}

.contact-form-dots--tr {
  top: 0;
  right: 0;
}

.contact-form-dots--br {
  bottom: 0;
  right: 0;
}

.contact-form-inner {
  position: relative;
  z-index: 1;
}

.contact-form-title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 1.5rem;
  color: #343a40;
}

.contact-form-input {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
}

.contact-form-input:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.contact-form-textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form-link {
  color: #0d6efd;
  text-decoration: underline;
}

.contact-form-link:hover {
  color: #0a58ca;
}

.contact-btn-submit {
  background: #fd7e14;
  color: #fff;
  border: none;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.contact-btn-submit:hover {
  background: #e96b00;
  color: #fff;
}

/* Contact page responsive */
@media (max-width: 991.98px) {
  .contact-illustration-wrap {
    min-height: 260px;
  }

  .contact-badge--explore {
    max-width: 140px;
    font-size: 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .contact-hero-title {
    font-size: 1.75rem;
  }

  .contact-intro-title {
    font-size: 1.5rem;
  }

  .contact-form-section .row {
    flex-direction: column-reverse;
  }

  .contact-illustration-wrap {
    min-height: 220px;
  }

  .contact-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }

  .contact-badge--awards,
  .contact-badge--reviews {
    left: 5%;
  }

  .contact-badge--explore {
    right: 5%;
    max-width: 130px;
  }
}

@media (max-width: 575.98px) {
  .contact-method-card .d-flex {
    flex-direction: column;
  }

  .contact-btn-outline,
  .contact-btn-orange {
    width: 100%;
  }
}

/* ================================
   YOUR FAVOURITES PAGE (yourFavourites.html)
   ================================ */

/* Variables / Global */
.fav-page {
  background: #f8f9fa;
}

/* Header */
.fav-header .navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Hero */
.fav-hero {
  background: #f8f9fa;
}

.fav-main-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #343a40;
  border-bottom: 3px solid #343A40;
  margin-bottom: 0;
  display: inline-flex;
}

.fav-title-underline {
  width: 60px;
  height: 3px;
  background: #343a40;
  margin: 0.5rem 0 0;
  border-radius: 2px;
}

.fav-sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  background: #fff;
  color: #343A40;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.fav-sort-btn:hover {
  border-color: #5BB2FF;
  box-shadow: 0 2px 8px rgba(91, 178, 255, 0.18);
}

.fav-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: #e7f2ff;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  margin-top: 1.25rem;
}

.fav-info-left,
.fav-info-right {
  font-size: 0.95rem;
  color: #343a40;
}

/* Main: sidebar + listings */
.fav-main {
  background: #f8f9fa;
}

.fav-filters-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fav-filter-block {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.fav-filter-header {
  background: #EBF5FD;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
}

.fav-filter-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #5BAAD4;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}

.fav-filter-count {
  color: #5BAAD4;
  font-weight: 600;
  font-size: 0.8rem;
}

.fav-filter-body {
  padding: 10px 14px 12px;
}

.fav-filter-body .form-check {
  margin-bottom: 2px;
  padding-left: 1.6rem;
}

.fav-filter-body .form-check-input:checked {
  background-color: #5BAAD4;
  border-color: #5BAAD4;
}

.fav-filter-body .form-check-label {
  color: #343A40;
  font-size: 0.82rem;
  line-height: 1.5;
  cursor: pointer;
}

.fav-btn-clear {
  background: #FFF3E0;
  color: #FD7E14;
  font-weight: 600;
  border: 1px solid #FFCC80;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

.fav-btn-clear:hover {
  background: #FFE0B2;
  color: #E65100;
  border-color: #FFB74D;
}

.fav-promo-banner {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-top: 1.25rem;
  height: 750px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fav-promo-bg {
  position: absolute;
  inset: 0;
  background: url('../images/reviewHero.png') center/cover no-repeat;
}

.fav-promo-content {
  padding: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  bottom: 0;
  gap: 8px;
}

.fav-promo-text {
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 1rem;
  width: fit-content;
}

.fav-promo-text-accent {
  font-size: 1.25rem;
}

.fav-promo-btn {
  margin: auto 0;
  width: 3rem;
  height: 3rem;
  background: #FFA500;
  border: none;
  align-self: flex-end;
  box-shadow: 0 2px 10px rgba(255, 165, 0, 0.4);
}

/* Listing cards */
.fav-listings {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fav-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
}

.fav-card-gallery {
  width: 38%;
  min-width: 280px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fav-card-main-img-wrap {
  position: relative;
  height: 185px;
  overflow: hidden;
  border-radius: 8px;
}

.fav-card-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.fav-card-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  gap: 0.35rem;
}

.fav-card-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #343a40;
  font-size: 1rem;
}

.fav-card-thumbs {
  display: flex;
  gap: 6px;
  background-color: white;
}

.fav-card-thumb {
  flex: 1;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
}

.fav-card-body {
  flex: 1;
  min-width: 280px;
  padding: 0 1.5rem;
  padding-top: 2.5rem;
}

.fav-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.15rem;
}

.fav-card-region {
  font-weight: 400;
  color: #6C757D;
}

.fav-views-badge {
  background: #5BB2FFCC;
  color: white;
  border: 1px solid #C3DEFF;
  border-radius: 50px;
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.fav-card-stats {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.fav-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fav-stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #9CA3AF;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.fav-stat-value {
  font-size: 0.875rem;
  color: #343A40;
  font-weight: 500;
}

.fav-stat-value .bi {
  color: #9CA3AF;
}

.fav-btn-add {
  background: #0d6efd;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  padding: 0.35rem 0.75rem;
  white-space: nowrap;
}

.fav-btn-add:hover {
  background: #0b5ed7;
  color: #fff;
}

.fav-card-location {
  font-size: 0.9rem;
  color: #5BB2FF;
  margin-bottom: 0.5rem;
}

.fav-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}

.fav-feature {
  font-size: 0.85rem;
  color: #5BB2FF;
}

.fav-card-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.fav-contact-item {
  font-size: 0.82rem;
  color: #5BB2FF;
  border: 1.5px solid #C3DEFF;
  border-radius: 10px;
  padding: 0.3rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
}

.fav-card-desc {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
}

.fav-link-more {
  color: #5BB2FF;
  text-decoration: none;
  font-size: 0.875rem;
}

.fav-link-more:hover {
  color: #3A9AEE;
  text-decoration: underline;
}

.fav-reviews-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fav-reviews-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6C757D;
}

.fav-review-avatars {
  display: flex;
}

.fav-review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}

.fav-review-avatars .fav-review-avatar:first-child {
  margin-left: 0;
}

.fav-reviews {
  font-size: 0.85rem;
  color: #6c757d;
}

.fav-btn-details {
  background: #FFAA4C;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 0.5rem 1.25rem;
  box-shadow: 0 2px 8px rgba(255, 170, 76, 0.35);
}

.fav-btn-details:hover {
  background: #FF9520;
  color: #fff;
}

/* Footer blocks */
.fav-footer-blocks {
  background: #f8f9fa;
}

.fav-info-card {
  background: #e8f0fe;
  border-radius: 0.75rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
}

.fav-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.fav-info-text {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.5;
}

.fav-info-link {
  color: #0d6efd;
  font-size: 0.9rem;
  text-decoration: none;
  display: block;
  padding: 0.2rem 0;
}

.fav-info-link:hover {
  color: #0a58ca;
  text-decoration: underline;
}

.fav-keywords {
  font-size: 0.85rem;
  color: #6c757d;
}

.fav-footer {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.fav-footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.25rem;
}

.fav-footer-text {
  font-size: 0.95rem;
  color: #6c757d;
}

/* Favourites Responsive */

/* Tablet & below (< 992px): hide sidebar, full-width content, stack card */
@media (max-width: 991.98px) {
  .fav-main {
    padding: 2rem 1.25rem !important;
  }

  .fav-main aside {
    display: none !important;
  }

  .fav-main .col-lg-9 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .fav-card {
    flex-direction: column;
  }

  .fav-card-gallery,
  .fav-card-body {
    width: 100%;
    min-width: 0;
  }

  .fav-card-main-img-wrap {
    height: 220px;
  }

  .fav-card-stats {
    gap: 1rem;
  }
}

/* Large tablet (768px – 991px): 2-column thumbs, wider gallery */
@media (min-width: 768px) and (max-width: 991.98px) {
  .fav-card {
    flex-direction: row;
  }

  .fav-card-gallery {
    width: 36%;
    min-width: 0;
  }

  .fav-card-body {
    width: 64%;
  }

  .fav-card-main-img-wrap {
    height: 185px;
  }
}

/* Small tablet / large phone (< 768px) */
@media (max-width: 767.98px) {
  .fav-hero {
    padding: 1.25rem 0 !important;
  }

  .fav-main {
    padding: 1.5rem 1rem !important;
  }

  .fav-main-title {
    font-size: 1.5rem;
  }

  .fav-info-bar {
    flex-direction: row;
    font-size: 0.8rem;
  }

  .fav-card {
    flex-direction: column;
  }

  .fav-card-gallery,
  .fav-card-body {
    width: 100%;
    min-width: 0;
  }

  .fav-card-main-img-wrap {
    height: 200px;
  }

  .fav-card-body {
    padding: 1rem;
  }

  .fav-card-stats {
    gap: 0.75rem;
  }

  .fav-stat-label {
    font-size: 0.6rem;
  }

  .fav-stat-value {
    font-size: 0.8rem;
  }

  .fav-card-contact {
    gap: 0.4rem;
  }

  .fav-contact-item {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
  }

  .fav-reviews-text {
    font-size: 0.8rem;
  }

  .fav-btn-details {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

/* Mobile (< 576px): small phones 320px–575px */
@media (max-width: 575.98px) {
  .fav-hero {
    padding: 1rem 0 !important;
  }

  .fav-main {
    padding: 1rem 0.75rem !important;
  }

  .fav-main-title {
    font-size: 1rem;
  }

  .fav-info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
  }

  .fav-card {
    flex-direction: column;
  }

  .fav-card-gallery {
    padding: 8px;
  }

  .fav-card-main-img-wrap {
    height: 180px;
  }

  .fav-card-body {
    padding: 0.875rem;
  }

  .fav-card-title {
    font-size: 0.95rem;
  }

  .fav-views-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }

  .fav-card-location {
    font-size: 0.82rem;
  }

  .fav-card-stats {
    flex-wrap: wrap;
    gap: 0.6rem 1.25rem;
  }

  .fav-stat-label {
    font-size: 0.58rem;
  }

  .fav-stat-value {
    font-size: 0.78rem;
  }

  .fav-card-contact {
    flex-direction: column;
    gap: 0.35rem;
  }

  .fav-contact-item {
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
    width: fit-content;
  }

  .fav-reviews-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .fav-btn-details {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .fav-review-avatar {
    width: 24px;
    height: 24px;
  }
}