/* AIRBNB STYLE - CLEAN SLATE */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --airbnb-red: #FF385C;
  --airbnb-red-hover: #D70466;
  --text-dark: #222222;
  --text-grey: #717171;
  --border-grey: #dddddd;
  --bg-light: #f7f7f7;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: white;
  -webkit-font-smoothing: antialiased;
}

mark {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 2px 4px;
  border-radius: 4px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- HEADER --- */
.ab-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-grey);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ab-logo img {
  height: 44px;
}

.ab-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 16px 0;
  width: 300px;
  z-index: 1001;
  cursor: default;
  text-align: left;
}
.ab-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}
.ab-profile-pill:hover .ab-dropdown-menu,
.ab-profile-pill:focus-within .ab-dropdown-menu,
.ab-dropdown-menu.show {
  display: block;
}

.ab-dropdown-item {
  padding: 12px 24px;
  display: block;
  font-size: 14px;
  color: var(--text-dark);
}
.ab-dropdown-item:hover {
  background-color: var(--bg-light);
}
.ab-dropdown-divider {
  height: 1px;
  background: var(--border-grey);
  margin: 8px 0;
}
.ab-dropdown-text {
  padding: 12px 24px;
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.5;
  text-align: left;
}
.ab-dropdown-text strong {
  color: var(--text-dark);
}

/* Specific Dropdown for Any Service Pill */
.ab-search-pill {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-grey);
  border-radius: 40px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  padding: 8px 8px 8px 24px;
  transition: box-shadow 0.2s ease;
  cursor: pointer;
}

.ab-search-pill:hover {
  box-shadow: 0 2px 4px rgba(0,0,0,0.18);
}

.ab-search-text {
  font-size: 14px;
  font-weight: 500;
  padding-right: 16px;
  border-right: 1px solid var(--border-grey);
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.ab-search-text:nth-of-type(2) {
  padding-left: 16px;
}
.ab-search-text:nth-of-type(3) {
  border-right: none;
}
.ab-search-input-wrapper {
  padding-left: 16px;
  display: flex;
  align-items: center;
  position: relative;
}
.ab-search-input-wrapper input {
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text-dark);
  background: transparent;
  width: 120px;
}
.ab-search-input-wrapper input::placeholder {
  color: var(--text-grey);
  font-weight: 400;
}

.ab-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  background: #fff;
  width: 250px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border-radius: 12px;
  z-index: 2000;
  max-height: 300px;
  overflow-y: auto;
  text-align: left;
  padding: 8px 0;
}
.ab-search-results::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}
.ab-search-results a {
  display: block;
  padding: 10px 16px;
  color: var(--text-dark);
  font-size: 14px;
}
.ab-search-results a:hover {
  background: var(--bg-light);
}

.ab-services-dropdown .search-option {
  display: block;
  padding: 14px 24px;
  color: #222;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s ease;
  cursor: pointer;
}
.ab-services-dropdown .search-option:hover {
  background: var(--bg-light);
}

/* Services Dropdown */
.ab-services-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: -20px;
  background: #fff;
  background-clip: padding-box;
  border-top: 15px solid transparent;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 16px 0;
  width: 250px;
  z-index: 1001;
  text-align: left;
}
.ab-search-text:hover .ab-services-dropdown,
.ab-services-dropdown.show {
  display: block;
}
.ab-services-dropdown a {
  padding: 12px 24px;
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 400;
}
.ab-services-dropdown a:hover {
  background-color: var(--bg-light);
}

.ab-search-icon {
  background-color: var(--airbnb-red);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
}

.ab-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ab-host-link {
  font-size: 14px;
  font-weight: 500;
  padding: 12px;
  border-radius: 24px;
}
.ab-host-link:hover {
  background-color: var(--bg-light);
}

/* --- CATEGORY BAR --- */
.ab-categories {
  display: flex;
  gap: 32px;
  padding: 24px 40px;
  border-bottom: 1px solid var(--border-grey);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.ab-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-grey);
  cursor: pointer;
  min-width: max-content;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
  position: relative;
}
.ab-category:hover, .ab-category.active {
  opacity: 1;
  color: var(--text-dark);
}
.ab-category.active {
  border-bottom: 2px solid var(--text-dark);
}

.ab-category-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 12px 0;
  width: 220px;
  z-index: 1002;
  text-align: left;
}
.ab-category:hover .ab-category-dropdown {
  display: block;
}
.ab-category-dropdown a {
  padding: 10px 20px;
  display: block;
  font-size: 13px;
  color: var(--text-dark);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
}
.ab-category-dropdown a:hover {
  background-color: var(--bg-light);
}
.ab-category img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}
.ab-category span {
  font-size: 12px;
  font-weight: 500;
}

/* --- MAIN LAYOUT --- */
.ab-container {
  max-width: 2560px;
  padding: 0 40px;
  margin: 0 auto;
}

/* --- HERO SECTION --- */
.ab-hero {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-image: url('../img/landing_hero.png');
  background-size: cover;
  background-position: center;
}

.ab-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.ab-hero-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  max-width: 800px;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.ab-hero-subtitle {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  margin-bottom: 32px;
}

.ab-hero-btn {
  background-color: var(--airbnb-red);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
  transition: background-color 0.2s;
}
.ab-hero-btn:hover {
  background-color: var(--airbnb-red-hover);
}

/* --- SERVICES GRID (AIRBNB LISTINGS) --- */
.ab-section-title {
  font-size: 32px;
  font-weight: 600;
  margin: 48px 0 24px 0;
}

.ab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px 24px;
  margin-bottom: 64px;
}

.ab-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.ab-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.ab-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ab-card:hover .ab-card-img {
  transform: scale(1.05);
}

.ab-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: rgba(0,0,0,0.5);
  font-size: 24px;
  -webkit-text-stroke: 2px #fff;
}

.ab-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
}

.ab-card-rating {
  font-weight: 400;
}

.ab-card-desc {
  font-size: 15px;
  color: var(--text-grey);
  margin-bottom: 4px;
  line-height: 1.4;
  /* Truncate to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ab-card-price {
  font-size: 15px;
  margin-top: 4px;
  color: var(--text-dark);
}
.ab-card-price strong {
  font-weight: 600;
}

/* --- SEO CONTENT SECTION (ABOUT) --- */
.ab-seo-section {
  padding: 64px 0;
  border-top: 1px solid var(--border-grey);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ab-seo-col h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
.ab-seo-col h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}
.ab-seo-col p {
  color: var(--text-grey);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* --- TESTIMONIALS (WHAT CUSTOMERS SAY) --- */
.ab-testimonials {
  padding: 64px 0;
  border-top: 1px solid var(--border-grey);
}
.ab-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.ab-testimonial-card {
  padding: 24px;
  border: 1px solid var(--border-grey);
  border-radius: 12px;
  background: #fff;
}
.ab-testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.ab-testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.ab-testimonial-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.ab-testimonial-info p {
  font-size: 14px;
  color: var(--text-grey);
}
.ab-testimonial-stars {
  color: #222;
  margin-bottom: 12px;
}
.ab-testimonial-text {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}

/* --- FOOTER --- */
.ab-footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-grey);
  padding: 48px 40px;
  margin-top: 0px;
}

.ab-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 2560px;
  margin: 0 auto;
}

.ab-footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--airbnb-red); /* Requested by user */
}

.ab-footer-col ul {
  list-style: none;
}

.ab-footer-col li {
  margin-bottom: 12px;
}

.ab-footer-col a {
  font-size: 14px;
  color: var(--text-dark);
}

.ab-footer-col a:hover {
  text-decoration: underline;
}

/* --- SERVICE PAGE LAYOUT --- */
.ab-service-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}
.ab-image-grid {
  display: flex;
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
  height: 60vh;
  min-height: 400px;
  margin-bottom: 48px;
}
.ab-image-main {
  flex: 1;
}
.ab-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab-image-sub-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.ab-image-sub-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-service-content-wrapper {
  display: flex;
  gap: 64px;
  margin-bottom: 64px;
}
.ab-service-left {
  flex: 2;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}
.ab-service-left h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-grey);
}
.ab-service-left h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 16px 0;
}
.ab-service-left p, .ab-service-left ul {
  margin-bottom: 16px;
}
.ab-service-left ul {
  padding-left: 20px;
}
.ab-service-left img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.ab-service-right {
  flex: 1;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.ab-booking-widget {
  position: relative;
  top: auto;
  border: 1px solid var(--border-grey);
  border-radius: 12px;
  padding: 16px; /* Reduced from 24px */
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  background: #fff;
}
/* Override inline padding to make inputs smaller */
.ab-booking-widget .ab-bw-input-group > div {
  padding: 8px !important;
}
.ab-bw-price {
  font-size: 20px; /* Reduced from 22px */
  font-weight: 600;
  margin-bottom: 16px; /* Reduced from 24px */
}
.ab-bw-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
}
.ab-bw-inputs {
  border: 1px solid #b0b0b0;
  border-radius: 8px;
  overflow: hidden;
}
.ab-bw-input-group {
  display: flex;
}
.ab-bw-input-group label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.ab-bw-input-group input, .ab-bw-input-group select {
  border: none;
  width: 100%;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: var(--text-dark);
}
.ab-bw-input-group input[type="date"], .ab-bw-input-group input[type="time"] {
  padding-right: 0;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
  .ab-service-content-wrapper {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .ab-service-content-wrapper { flex-direction: column; }
  .ab-service-right { margin: 0; padding: 0; height: 0; }
  .ab-service-left { width: 100% !important; }
  .ab-header { padding: 16px 24px; }
  .ab-search-pill { display: none !important; }
  .ab-container { padding: 0 24px; }
  .ab-hero-title { font-size: 32px; }
  .ab-seo-section { grid-template-columns: 1fr; }
  
  body { padding-bottom: 0; }
  
  .ab-bw-price { margin-bottom: 0; font-size: 15px; font-weight: 700; }
  .ab-bw-price span { font-size: 11px; font-weight: 400; }
  
  .whatsapp-floating-btn { display: none !important; }
}

@media (max-width: 768px) {
  /* Bring back the sticky booking widget, but make it stack vertically to accommodate the inputs */
  .ab-booking-widget {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important; /* Stuck directly to bottom of screen */
    left: 0;
    width: 100%;
    height: auto !important;
    z-index: 1000;
    background: #fff;
    border-radius: 16px 16px 0 0 !important; /* Rounded top like a bottom sheet */
    border: none !important;
    border-top: 1px solid var(--border-grey) !important;
    padding: 16px !important;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.1) !important;
    display: block !important;
    max-height: 70vh; /* Prevent it from being taller than the screen */
    overflow-y: auto; /* Scrollable if very small screen */
  }
  
  /* Make sure the inputs are visible */
  .ab-bw-inputs {
    display: block !important;
    margin-bottom: 12px;
  }
  
  /* Make the form group flex column on very small screens or keep row */
  .ab-bw-input-group {
    display: flex;
    flex-direction: row;
  }
  
  .ab-booking-widget p {
    display: none !important; /* Hide "You won't be charged yet" to save space */
  }
  
  .ab-booking-widget button {
    margin-top: 8px !important;
    width: 100% !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
  }
  .ab-testimonials-grid-new {
    grid-template-columns: 1fr !important;
  }
}


/* Global Floating Button Styles */
.ab-floating-actions {
    display: none !important;
}

/* Global override for the outside Call to Book button */
.ab-call-to-book-outside {
    background: #f7f7f7 !important;
    color: var(--airbnb-red) !important;
    border: 1px solid #ebebeb !important;
}
.ab-call-to-book-outside:hover {
    background: #ebebeb !important;
}

.ab-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white !important;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}
.ab-float-btn:hover {
    transform: scale(1.05);
}
.ab-float-wa {
    background-color: #25d366;
}
.ab-float-call {
    background-color: #003566;
}

