@charset "UTF-8";

/*--------------------------------------------------------------
# Mwakaro Font & Color Variables
--------------------------------------------------------------*/

/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --heading-font: "Bitter", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* 🌿 Global Brand Colors */
:root { 
  --background-color: #f7fbf6;   /* soft off-white with green tint */
  --default-color: #2f3b2f;      /* deep leaf green for body text */
  --heading-color: #1f2e1f;      /* darker forest green for headings */
  --accent-color: #f2b705;       /* warm coastal gold (sun / sand) */
  --surface-color: #ffffff;     /* cards, modals, boxes */
  --contrast-color: #ffffff;    /* text on gold / dark */
}

/* 🌴 Navigation Colors */
:root {
  --nav-color: #2f3b2f;              /* calm dark green */
  --nav-hover-color: #f2b705;        /* gold hover */
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #2f3b2f;
  --nav-dropdown-hover-color: #f2b705;
}

/* 🌞 Section Presets */
.light-background {
  --background-color: #fffde7;   /* warm light yellow */
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1f2e1f;   /* deep forest green */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #2f3b2f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), #ffffff 20%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/* ===========================
   MWAKARO HEADER
=========================== */

.header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 12px 0;
  z-index: 999;
}

/* Brand area */
.logo {
  text-decoration: none;
  gap: 10px;
}

.logo-custom {
  height: 42px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.sitename {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: #1f2e1f; /* deep green */
}

.brand-location {
  font-size: 0.75rem;
  color: #6b7d6b;
  letter-spacing: 0.5px;
}

/* Nav menu */
.navmenu ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navmenu a {
  text-decoration: none;
  font-weight: 500;
  color: #2f3b2f;
  position: relative;
  transition: 0.3s;
}

.navmenu a:hover,
.navmenu a.active {
  color: #f2b705; /* coastal gold */
}

/* gold underline on hover */
.navmenu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f2b705;
  transition: 0.3s;
}

.navmenu a:hover::after,
.navmenu a.active::after {
  width: 100%;
}

/* Mobile menu */
.mobile-nav-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #2f3b2f;
}

/* Responsive */
@media (max-width: 992px) {

  .navmenu ul {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: 0.4s;
    z-index: 999;
  }

  .navmenu.navmenu-active ul {
    right: 0;
  }

  .mobile-nav-toggle {
    display: block;
  }
}


.footer {
  background: #f7fbf6;
  border-top: 1px solid rgba(47, 59, 47, 0.1);
}

.footer .sitename {
  color: #1f2e1f;
  font-size: 28px;
  font-weight: 700;
}

.footer h4 {
  color: #1f2e1f;
}

.footer h4:after {
  background-color: #f2b705;
}

.footer .newsletter-form .btn-subscribe {
  background: #f2b705;
}

.footer .newsletter-form .btn-subscribe:hover {
  background: #d9a400;
}

.footer .footer-links ul a:hover {
  color: #f2b705;
}

/* .footer .footer-contact .contact-icon {
  background-color: rgba(242, 183, 5, 0.15);
} */

.footer .footer-contact .contact-icon i {
  color: #f2b705;
}

.footer .social-links a:hover {
  background-color: #f2b705;
  color: #ffffff;
}

.footer .footer-bottom {
  background-color: rgba(47, 59, 47, 0.04);
}
/* Hero - Mwakaro & Destiny Inn Style */
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--heading-color, #291812);
  margin-bottom: 1.5rem;
  font-family: var(--heading-font, 'Bitter', serif);
}

@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--default-color, #352a26);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions .btn-primary {
  background: var(--accent-color, #eb5f2d);
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(235, 95, 45, 0.3);
}

.hero-actions .btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-actions .btn-outline-primary:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--default-color);
}

.trust-item i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

/* Images with float */
.hero-images {
  position: relative;
  height: 520px;
}

.main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-images:hover .main-image img {
  transform: scale(1.03);
}

.floating-image {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
  transition: all 0.4s ease;
}

.floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-1 {
  width: 180px;
  height: 180px;
  top: 10%;
  left: 0;
  animation: float1 6s ease-in-out infinite;
}

.floating-2 {
  width: 140px;
  height: 140px;
  bottom: 15%;
  right: 10%;
  animation: float2 7s ease-in-out infinite 2s;
}

.floating-3 {
  width: 160px;
  height: 160px;
  top: 55%;
  right: 25%;
  animation: float3 8s ease-in-out infinite 4s;
}

.hero-images:hover .floating-image {
  transform: scale(1.05);
}

/* Floating images - responsive behavior */
@media (max-width: 991px) {
  .hero-images {
    height: 420px; /* Slightly shorter on mobile */
  }

  .main-image {
    width: 100%;
    right: 0;
    border-radius: 16px;
  }

  .floating-image {
    width: 110px !important;
    height: 110px !important;
    border-width: 3px; /* thinner border on small screens */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }

  .floating-1 {
    top: 8%;
    left: 5%;
    animation: float1-mobile 5s ease-in-out infinite;
  }

  .floating-2 {
    bottom: 12%;
    right: 8%;
    animation: float2-mobile 6s ease-in-out infinite 1.5s;
  }

  .floating-3 {
    top: 45%;
    right: 12%;
    animation: float3-mobile 7s ease-in-out infinite 3s;
  }
}

/* Mobile-optimized float animations (smaller movement) */
@keyframes float1-mobile {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -12px); }
}

@keyframes float2-mobile {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, 10px); }
}

@keyframes float3-mobile {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -8px); }
}

/* Extra small screens - make floats even smaller or hide one */
@media (max-width: 576px) {
  .hero-images {
    height: 360px;
  }

  .floating-image {
    width: 90px !important;
    height: 90px !important;
  }

  .floating-3 {
    display: none; /* Hide third float on very small screens to avoid clutter */
  }
}

/* Mwakaro Booking Modal - Destiny Inn Style */
.booking-modal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.booking-modal .modal-header {
  background: var(--background-color, #fff9f7);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.booking-modal .modal-title {
  font-family: var(--heading-font, 'Bitter', serif);
  color: var(--heading-color, #291812);
  font-weight: 700;
}

.booking-modal .form-label {
  font-weight: 600;
  color: var(--heading-color);
}

.booking-modal .form-control,
.booking-modal .form-select {
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.booking-modal .form-control:focus,
.booking-modal .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.booking-modal .accordion-button {
  background: #f9f3f0;
  color: var(--heading-color);
  font-weight: 600;
}

.booking-modal .accordion-button:not(.collapsed) {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.booking-modal .add-on-tile {
  background: white;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.booking-modal .add-on-tile:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.booking-modal .add-on-tile i {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.booking-modal .total-price {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.booking-modal .btn-primary {
  background: var(--accent-color);
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.booking-modal .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
}


/*--------------------------------------------------------------
# Under Construction Section - Destiny Inn Style
--------------------------------------------------------------*/
.under-construction {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.construction-content {
  max-width: 700px;
  margin: 0 auto;
}

.icon-wrapper {
  font-size: 6rem;
  color: var(--accent-color, #eb5f2d);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

.under-construction h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--heading-color, #291812);
  margin-bottom: 1.5rem;
  font-family: var(--heading-font, 'Bitter', serif);
}

.under-construction .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--default-color, #352a26);
  margin-bottom: 2rem;
}

.progress-container {
  height: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), #f28a5e);
  transition: width 1.5s ease;
  animation: progressGlow 3s infinite alternate;
}

@keyframes progressGlow {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #20b058;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 213, 102, 0.3);
}

.fun-fact {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Responsive */
@media (max-width: 768px) {
  .under-construction {
    padding: 80px 0;
  }
  
  .under-construction h1 {
    font-size: 2.8rem;
  }
  
  .icon-wrapper {
    font-size: 5rem;
  }
}

/*--------------------------------------------------------------
#  Destinations Section 
--------------------------------------------------------------*/

.destinations {
  padding: 100px 0;
}

.destinations .section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.destinations .section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.destination-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: white;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .card-image img {
  transform: scale(1.08);
}


.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem;
  color: #fff;
  z-index: 2;
  /* background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); */
}

.card-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.15),
    transparent
  );
  z-index: -1;
  pointer-events: none;
}

.card-overlay h3,
.card-overlay p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}


.card-overlay h3 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
  color: white;
}

.card-overlay p {
  font-size: 0.95rem;
  margin: 0.5rem 0 0;
  opacity: 0.9;
}

.card-content {
  padding: 1.5rem;
}

.card-content .btn {
  background: var(--accent-color);
  color: white;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-content .btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .destination-card .card-image {
    height: 240px;
  }
}
@media (max-width: 576px) {
  .card-overlay h3 {
    font-size: 1.4rem;
  }

  .card-overlay p {
    font-size: 0.85rem;
  }
}


/*--------------------------------------------------------------
# How Mwakaro Works - Destiny Inn / Mwakaro Style
--------------------------------------------------------------*/
.how-works {
  padding: 100px 0;
  background: var(--background-color, #fff9f7);
}

.how-works .section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--heading-color, #291812);
}

.how-works .section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--default-color, #352a26);
}

.step-card {
  background: var(--surface-color, #ffffff);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color, #eb5f2d), transparent 90%);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color, #eb5f2d);
}

.step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--accent-color);
}

.step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  background: var(--accent-color, #eb5f2d);
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
}

.step-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color, #291812);
}

.step-card p {
  font-size: 1rem;
  color: var(--default-color, #352a26);
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.how-works .btn-primary {
  background: var(--accent-color, #eb5f2d);
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.how-works .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(235, 95, 45, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .step-card {
    padding: 1.8rem 1.2rem;
  }

  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}
.how-works .step-card:nth-child(4) .step-icon {
  background: color-mix(in srgb, var(--accent-color), #28a745 30%);
}

.how-works .step-card:nth-child(4) .step-icon i {
  color: white;
}


/*--------------------------------------------------------------
#  Featured Section 
--------------------------------------------------------------*/
/* Featured Stays - Mwakaro Safe Shortcuts */
.featured {
  padding: 100px 0;
}

.featured .section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.featured .section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.featured-card {
  background: var(--surface-color, #ffffff);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-card:hover .card-image img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.card-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.card-content .location {
  font-size: 0.95rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

.card-content .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 1rem;
}

.card-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.card-actions .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: 50px;
}

.card-actions .btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.card-actions .btn-outline:hover {
  background: var(--accent-color);
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .featured-card .card-image {
    height: 200px;
  }
}


.featured .btn-primary {
  background: var(--accent-color, #eb5f2d);
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.featured .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(235, 95, 45, 0.3);
}

.featured .btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1.1rem;
}

.featured .btn-outline-primary:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}
.featured .btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1.1rem;
   color: white;
}

.featured .btn-outline-primary:hover {
  background: var(--accent-color);
  /* color: white; */
  transform: translateY(-3px);
}






/*--------------------------------------------------------------
# Why Mwakaro - Unified Styles
--------------------------------------------------------------*/
.why-us .feature-showcase {
  text-align: center;
}

.why-us .feature-showcase img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.why-us .feature-content {
  padding-left: 30px;
}

.why-us .feature-content h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.2;
}

.why-us .feature-content .lead {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Feature List Item Layout */
.why-us .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

/* Feature Icon Base */
.why-us .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition: all 0.35s ease;
}

.why-us .feature-icon i {
  color: #ffffff; /* Icons are white against the gradient backgrounds */
  font-size: 22px;
}

/* Hover Effects */
.why-us .feature-item:hover .feature-icon {
  transform: translateY(-3px) scale(1.05);
}

/* Color Gradients */
.icon-verification { background: linear-gradient(135deg, #f2b705, #f59e0b); }
.icon-local        { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.icon-flexible     { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.icon-pricing      { background: linear-gradient(135deg, #28a745, #20c997); }

/* Feature 4 Special Emphasis */
.why-us .feature-trust-card {
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.06), rgba(32, 201, 151, 0.04));
}

.why-us .feature-trust-card .feature-icon {
  box-shadow: 0 8px 24px rgba(40, 167, 69, 0.35), 0 0 0 6px rgba(40, 167, 69, 0.12);
  animation: trustPulse 3.5s ease-out infinite;
}

.why-us .feature-trust-card h5 { color: #1f7a3f !important; font-weight: 700; }

/* Text Content */
.why-us .feature-text h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.why-us .feature-text p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.5;
}

/* Buttons */
.why-us .cta-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.why-us .btn {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
}

.why-us .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
  color: #fff;
  border-color: var(--accent-color);
}

.why-us .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.why-us .btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.why-us .btn-outline:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Animations */
@keyframes trustPulse {
  0%   { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.35); }
  70%  { box-shadow: 0 0 0 12px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .why-us .feature-content { padding-left: 0; padding-top: 40px; }
}

@media (max-width: 768px) {
  .why-us .feature-content h3 { font-size: 28px; }
  .why-us .cta-wrapper .btn { width: 100%; justify-content: center; }
  .why-us .feature-item { margin-bottom: 20px; }
}
/*--------------------------------------------------------------
#  Property owners
--------------------------------------------------------------*/
/* For Property Owners Section - Mwakaro Style */
.for-owners {
  padding: 100px 0;
  background: var(--background-color, #fff9f7);
}

.for-owners .section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.for-owners .section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.owner-form-card {
  background: var(--surface-color, #ffffff);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--accent-color, #eb5f2d);
}

.owner-form-card .form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.owner-form-card .form-header p {
  font-size: 1.1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.owner-form-card .form-control,
.owner-form-card .form-select {
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.owner-form-card .form-control:focus,
.owner-form-card .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.owner-form-card .btn-submit {
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.owner-form-card .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(235, 95, 45, 0.3);
}

.why-list-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.why-list-content .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.why-list .why-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.why-list .why-item i {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.why-list .why-item h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-list .why-item p {
  margin: 0;
  color: var(--default-color);
}

/* Responsive */
@media (max-width: 992px) {
  .for-owners .why-list-content {
    margin-top: 3rem;
  }
}
/*--------------------------------------------------------------
#  Trust strip
--------------------------------------------------------------*/
/* Trust & Local Presence Strip - Mwakaro Style */
.trust-strip {
  padding: 40px 0;
  background: var(--background-color, #fff9f7);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-family: var(--default-font, 'Roboto', sans-serif);
}

.trust-strip .main-statement {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color, #291812);
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.trust-strip .trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-strip .badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--default-color, #352a26);
  opacity: 0.9;
}

.trust-strip .badge-item i {
  font-size: 1.4rem;
  color: var(--accent-color, #eb5f2d);
}

/* Responsive */
@media (max-width: 768px) {
  .trust-strip {
    padding: 30px 0;
  }

  .trust-strip .main-statement {
    font-size: 1.1rem;
  }

  .trust-strip .trust-badges {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }

  .trust-strip .badge-item {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
#  Places
--------------------------------------------------------------*/
/* Places Page - Mwakaro Style */
.places-hero {
  padding: 100px 0 80px;
  text-align: center;
  background: var(--background-color, #fff9f7);
}

.places-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color, #291812);
  margin-bottom: 1rem;
}

.places-hero .lead {
  font-size: 1.3rem;
  color: var(--default-color, #352a26);
  max-width: 800px;
  margin: 0 auto;
}

.places-filter {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
  background: var(--surface-color, #ffffff);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.filter-group {
  flex: 1;
  min-width: 180px;
}

.filter-group label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  display: block;
}

.filter-group .form-select {
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 0.75rem 1rem;
}

#apply-filters {
  background: var(--accent-color, #eb5f2d);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

#apply-filters:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
}

.places .featured-card {
  /* Reuse your existing featured-card styles */
  /* Add any tweaks if needed */
}

.card-badge.available {
  background: #28a745;
  color: white;
}

.card-badge.booked {
  background: #dc3545;
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .filter-bar {
    flex-direction: column;
  }

  #apply-filters {
    width: 100%;
  }
}


.places .btn-primary {
  background: var(--accent-color, #eb5f2d);
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.places .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(235, 95, 45, 0.3);
}

.places .btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1.1rem;
}

.card-secondary {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.8;
}

.card-secondary .text-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.card-secondary .text-link:hover {
  text-decoration: underline;
  opacity: 1;
}

.card-badge.available {
  background: #198754; /* green */
}

.card-badge.booked {
  background: #dc3545; /* red */
}


/* Slow loading*/

/* .lazy-img {
  filter: blur(1px);
  opacity: 0;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.lazy-img.loaded {
  filter: blur(0);
  opacity: 1;
} */
/*--------------------------------------------------------------
#  Room Details
--------------------------------------------------------------*/
/* Reuse your root variables and add minimal overrides */
    .room-details {
      padding: 80px 0 60px;
    }

    .room-hero {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin-bottom: 2rem;
    }

    .room-hero img {
      width: 100%;
      height: 500px;
      object-fit: cover;
    }

    .room-info-card {
      background: var(--surface-color, #ffffff);
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .room-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--heading-color, #291812);
      margin-bottom: 1rem;
    }

    .room-location {
      font-size: 1.2rem;
      color: var(--accent-color, #eb5f2d);
      margin-bottom: 1.5rem;
    }

    .room-description {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--default-color, #352a26);
      margin-bottom: 2rem;
    }

    .room-features {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .feature-tag {
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
      color: var(--accent-color);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 500;
    }

    .room-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-book {
      background: var(--accent-color);
      border: none;
      border-radius: 50px;
      padding: 14px 32px;
      font-weight: 600;
      color: white;
      transition: all 0.3s ease;
    }

    .btn-book:hover {
      background: color-mix(in srgb, var(--accent-color), black 15%);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(235, 95, 45, 0.3);
    }

    .gallery-swiper .swiper-slide img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      border-radius: 12px;
    }

    @media (max-width: 992px) {
      .room-hero img { height: 400px; }
      .room-title { font-size: 2.2rem; }
    }

    @media (max-width: 576px) {
      .room-actions { flex-direction: column; }
      .gallery-swiper .swiper-slide img { height: 300px; }
    }






