/* =============================================
   SWEETIN — Shared CSS (Bootstrap override)
   Terracotta + Cream + Gold palette
   ============================================= */

/* ---------- Google Fonts ---------- */
.sw-display { font-family: 'Playfair Display', serif; }
.sw-body    { font-family: 'Inter', sans-serif; }
.sw-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.carousel-indicators{
  display: none;
}

/* ---------- Color tokens ---------- */
:root {
  --sw-primary:        #e2b236;
  --sw-primary-light:  hsl(18, 55%, 65%);
  --sw-primary-dark:   hsl(18, 65%, 38%);
  --sw-gold:           hsl(43, 75%, 55%);
  --sw-gold-dark:      hsl(43, 70%, 42%);
  --sw-cream:          hsl(36, 40%, 95%);
  --sw-sand:           hsl(38, 35%, 88%);
  --sw-charcoal:       hsl(20, 20%, 14%);
  --sw-sage:           hsl(148, 22%, 44%);
  --sw-muted:          hsl(20, 15%, 45%);
  --sw-border:         hsl(36, 20%, 85%);
  --sw-card:           hsl(36, 25%, 99%);
  --sw-bg:             hsl(36, 30%, 97%);

  --sw-gradient-warm:  linear-gradient(135deg, hsl(43,75%,55%) 0%, hsl(38,80%,62%) 100%);
  --sw-gradient-gold:  linear-gradient(135deg, hsl(43,75%,55%) 0%, hsl(38,80%,62%) 100%);
  --sw-gradient-hero:  linear-gradient(to bottom, hsla(20,25%,8%,.55) 0%, hsla(20,25%,8%,.2) 60%, transparent 100%);
  --sw-shadow-soft:    0 4px 24px -4px hsla(20,25%,12%,.12);
  --sw-shadow-card:    0 8px 32px -8px hsla(20,25%,12%,.18);
  --sw-shadow-primary: 0 8px 24px -6px hsla(18,62%,50%,.38);
}

/* ---------- Global ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--sw-bg);
  color: var(--sw-charcoal);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }

.sw-text-primary { color: var(--sw-primary) !important; }
.sw-muted        { color: var(--sw-muted) !important; }
.sw-em           { color: var(--sw-primary); }
.text-white-75   { color: rgba(255,255,255,.75); }
.text-white-50   { color: rgba(255,255,255,.5); }

/* ---------- NAVBAR ---------- */
.sw-navbar {
  transition: all .4s ease;
  /* padding-top: .75rem;
  padding-bottom: .75rem; */
}
.sw-navbar-solid,
.sw-navbar.scrolled {
  background: rgba(255,251,246,.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--sw-shadow-soft);
  border-bottom: 1px solid var(--sw-border);
}
.sw-navbar:not(.sw-navbar-solid):not(.scrolled) {
  background: transparent;
}
.sw-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}
.sw-logo-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sw-gradient-warm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--sw-shadow-primary);
  flex-shrink: 0;
}
.sw-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sw-charcoal);
  letter-spacing: .02em;
}
.sw-navbar:not(.sw-navbar-solid):not(.scrolled) .sw-logo span { color: #fff; }

.sw-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: var(--sw-muted) !important;
  letter-spacing: .02em;
  position: relative;
  padding-bottom: 4px !important;
  transition: color .2s;
}
.sw-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--sw-primary);
  border-radius: 2px;
  transition: width .25s;
}
.sw-nav-link:hover,
.sw-nav-link.active {
  color: var(--sw-charcoal) !important;
}
.sw-nav-link:hover::after,
.sw-nav-link.active::after { width: 100%; }
/* .sw-navbar:not(.sw-navbar-solid):not(.scrolled) .sw-nav-link {
   color: rgba(255,255,255,.85) !important; 
  } */
   .sw-navbar:not(.sw-navbar-solid):not(.scrolled) .sw-nav-link2 {
   color: rgba(255,255,255,.85) !important; 
  }
.sw-navbar:not(.sw-navbar-solid):not(.scrolled) .sw-nav-link::after { background: #fff; }

/* ---------- BUTTONS ---------- */
.sw-btn-primary {
  background: var(--sw-gradient-warm);
  color: #fff !important;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  box-shadow: var(--sw-shadow-primary);
  transition: all .3s;
}
.sw-btn-primary:hover { transform: scale(1.04); box-shadow: 0 10px 28px -6px hsla(18,62%,50%,.55); color: #fff !important; }

.sw-btn-outline-white {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.5);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: all .3s;
}
.sw-btn-outline-white:hover { background: rgba(255,255,255,.12); color: #fff !important; }

.sw-btn-white {
  background: #fff;
  color: var(--sw-primary) !important;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: all .3s;
}
.sw-btn-white:hover { background: var(--sw-cream); transform: scale(1.04); }

/* ---------- HERO ---------- */
.sw-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--sw-charcoal);
}
.sw-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../hero-villa.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.7);
}
.sw-hero-overlay {
  position: absolute; inset: 0;
  background: var(--sw-gradient-hero);
}

/* ---------- STATS BAR (gold) ---------- */
.sw-stats-bar {
  background: var(--sw-gradient-gold);
}
.sw-stat-value {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--sw-charcoal);
  font-family: 'Playfair Display', serif;
}
.sw-stat-label {
  font-size: .8rem;
  color: hsla(20,20%,14%,.7);
  font-family: 'Inter', sans-serif;
}

/* ---------- PROPERTY CARDS ---------- */
.sw-card {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--sw-shadow-soft);
  transition: all .3s ease;
}
.sw-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sw-shadow-card);
}
.sw-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.sw-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.sw-card:hover .sw-card-img { transform: scale(1.05); }
.sw-card-body { padding: 1.25rem; }

.sw-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--sw-gradient-warm);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 2rem;
  letter-spacing: .04em;
  box-shadow: var(--sw-shadow-primary);
}
.sw-badge-new    { background: var(--sw-gradient-gold) !important; color: var(--sw-charcoal) !important; }
.sw-badge-luxury { background: linear-gradient(135deg, hsl(148,22%,44%), hsl(148,28%,35%)) !important; }

.sw-chip {
  background: var(--sw-cream);
  border: 1px solid var(--sw-border);
  border-radius: 2rem;
  padding: .2rem .65rem;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  color: var(--sw-muted);
}
.sw-stars { color: var(--sw-gold); font-size: 1rem; }

/* ---------- PAGE HEADER ---------- */
.sw-page-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.sw-bg-cream { background-color: var(--sw-cream); }

/* ---------- FILTERS BAR ---------- */
.sw-filters-bar {
  background: rgba(255,251,246,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sw-border);
  box-shadow: var(--sw-shadow-soft);
  z-index: 999;
}
.sw-search-input {
  border-color: var(--sw-border);
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: var(--sw-charcoal);
  transition: all .25s;
}
.sw-search-input::placeholder { color: var(--sw-muted); }
.sw-search-input:focus {
  border-color: var(--sw-primary);
  box-shadow: 0 0 0 3px hsla(18,62%,50%,.15);
}
.sw-filter-btn {
  padding: .4rem 1rem;
  border-radius: 2rem;
  border: 1px solid var(--sw-border);
  background: var(--sw-cream);
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  color: var(--sw-muted);
  cursor: pointer;
  transition: all .2s;
}
.sw-filter-btn:hover { background: var(--sw-sand); color: var(--sw-charcoal); }
.sw-filter-btn.active {
  background: var(--sw-gradient-warm);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sw-shadow-primary);
}
.sw-filter-toggle {
  padding: .4rem 1rem;
  border-radius: 2rem;
  border: 1px solid var(--sw-border);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  color: var(--sw-muted);
  cursor: pointer;
  transition: all .2s;
}
.sw-filter-toggle:hover, .sw-filter-toggle.active {
  border-color: var(--sw-primary);
  color: var(--sw-primary);
  background: hsla(18,62%,50%,.06);
}
.sw-range { accent-color: var(--sw-primary); }

/* ---------- WHY SWEETIN / VALUE CARDS ---------- */
.sw-why-card, .sw-value-card {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: 1.25rem;
  box-shadow: var(--sw-shadow-soft);
  transition: all .3s;
}
.sw-why-card:hover, .sw-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sw-shadow-card);
}

/* ---------- ICON CIRCLE ---------- */
.sw-icon-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--sw-gradient-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--sw-shadow-primary);
}

/* ---------- TESTIMONIALS ---------- */
.sw-testimonial-card {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: 1.25rem;
  box-shadow: var(--sw-shadow-soft);
}
.sw-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sw-gradient-warm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: var(--sw-shadow-primary);
  flex-shrink: 0;
}

/* ---------- CTA BANNER ---------- */
.sw-cta-banner {
  background: var(--sw-gradient-warm);
  position: relative;
}

/* ---------- STAT CARDS (About) ---------- */
.sw-stat-card {
  background: var(--sw-card);
  border-radius: 1rem;
  box-shadow: var(--sw-shadow-soft);
  transition: transform .3s;
}
.sw-stat-card:hover { transform: translateY(-4px); }

/* ---------- TIMELINE ---------- */
.sw-timeline-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sw-gradient-warm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: var(--sw-shadow-primary);
  flex-shrink: 0;
}
.sw-timeline-line {
  width: 2px;
  flex: 1;
  background: var(--sw-border);
  margin-top: 4px;
}

/* ---------- TEAM AVATARS ---------- */
.sw-team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--sw-gradient-warm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  box-shadow: var(--sw-shadow-primary);
  transition: transform .3s;
}
.sw-team-avatar:hover { transform: scale(1.1); }

/* ---------- LINK ARROW ---------- */
.sw-link-arrow {
  color: var(--sw-primary) !important;
  transition: letter-spacing .2s;
}
.sw-link-arrow:hover { letter-spacing: .02em; }

/* ---------- CONTACT PAGE ---------- */
.sw-contact-icon {
  width: 42px; height: 42px;
  border-radius: .75rem;
  background: var(--sw-gradient-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--sw-shadow-primary);
  flex-shrink: 0;
}
.sw-contact-link {
  text-decoration: none;
  color: var(--sw-charcoal);
  transition: color .2s;
}
.sw-contact-link:hover { color: var(--sw-primary); }
.sw-map-placeholder {
  background: var(--sw-cream);
  border: 1px solid var(--sw-border);
  border-radius: 1rem;
  height: 180px;
  box-shadow: var(--sw-shadow-soft);
}
.sw-form-card {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: 1.5rem;
  box-shadow: var(--sw-shadow-card);
}
.sw-form-label {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: var(--sw-muted);
  margin-bottom: .4rem;
  display: block;
}
.sw-input {
  border-color: var(--sw-border) !important;
  background: var(--sw-bg) !important;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: var(--sw-charcoal) !important;
  border-radius: .75rem !important;
  transition: all .25s;
}
.sw-input::placeholder { color: var(--sw-muted) !important; }
.sw-input:focus {
  border-color: var(--sw-primary) !important;
  box-shadow: 0 0 0 3px hsla(18,62%,50%,.15) !important;
}
.sw-success-icon { font-size: 3rem; }

/* ---------- FAQ ACCORDION ---------- */
.sw-accordion-item {
  background: var(--sw-card) !important;
  border: 1px solid var(--sw-border) !important;
  border-radius: 1rem !important;
  margin-bottom: .75rem;
  overflow: hidden;
  box-shadow: var(--sw-shadow-soft);
}
.sw-accordion-btn {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--sw-charcoal) !important;
  background: var(--sw-card) !important;
  padding: 1.1rem 1.5rem;
  box-shadow: none !important;
}
.sw-accordion-btn:not(.collapsed) { color: var(--sw-primary) !important; }
.sw-accordion-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C8704A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.sw-accordion-body {
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: var(--sw-muted);
  line-height: 1.7;
  padding: 0 1.5rem 1.25rem;
  background: var(--sw-card);
}

/* ---------- FOOTER ---------- */
.sw-footer {
  background-color: var(--sw-charcoal);
  color: rgba(255,255,255,.6);
}
.sw-footer-muted { color: rgba(255,255,255,.45) !important; }
.sw-footer-links a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  margin-bottom: .6rem;
  transition: color .2s;
}
.sw-footer-links a:hover { color: var(--sw-primary); }
.sw-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .8rem;
}
.sw-footer-contact a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.sw-footer-contact a:hover { color: var(--sw-primary); }
.sw-footer-policy {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}
.sw-footer-policy:hover { color: rgba(255,255,255,.6); }
.sw-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  font-size: 1rem;
  text-decoration: none;
  transition: all .25s;
}
.sw-social-icon:hover { background: var(--sw-primary); border-color: var(--sw-primary); }

/* ---------- SHADOW UTILITY ---------- */
.sw-shadow-card { box-shadow: var(--sw-shadow-card); }

/* ---------- PROPERTY DETAIL PAGE ---------- */
.sw-detail-carousel {
  /* box-shadow: var(--sw-shadow-card);
  border: 1px solid var(--sw-border); */
  max-height: 520px;
  
}
.sw-detail-slide-img {
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
}
.sw-detail-thumb {
  width: 90px;
  height: 64px;
  object-fit: cover;
  border-radius: .75rem;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .6;
  transition: all .25s;
  flex-shrink: 0;
}
.sw-detail-thumb:hover { opacity: .85; }
.sw-detail-thumb.active {
  border-color: var(--sw-primary);
  opacity: 1;
  box-shadow: 0 0 0 3px hsla(18,62%,50%,.2);
}
.sw-detail-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  background: var(--sw-cream);
  border: 1px solid var(--sw-border);
  border-radius: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: var(--sw-charcoal);
  font-weight: 500;
}
.sw-detail-amenity {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: var(--sw-cream);
  border: 1px solid var(--sw-border);
  border-radius: .75rem;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: var(--sw-charcoal);
}
@media (max-width: 767px) {
  .sw-detail-carousel, .sw-detail-slide-img { max-height: 300px; height: 300px; }
}
