:root {
  --accent:       #6d28d9;
  --accent-light: #ede9fe;
  --accent-2:     #0ea5e9;
  --text-dark:    #111827;
  --text-mid:     #374151;
  --text-light:   #6b7280;
  --border:       #e5e7eb;
  --bg-white:     #ffffff;
  --bg-alt:       #f9fafb;
  --radius:       12px;
  --transition:   0.25s ease;
  --nav-w:        230px;
}


.homestay
{
	background: linear-gradient(to bottom, #ffffff 0%, #ffffff 30%, #deeeff 100%);
}

.homestaygrid
{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.homestaybox 
{
	background: #ffffff;
	box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.1);
	border-radius: 6px;
	overflow: hidden;
}

.homestaytitle
{
	padding: 15px;
}

.homestaybox  h3 
{
	font-size: 22px;
	color: #000000;
}

.homestaygrid h3 
{
	margin-bottom: 10px;
}

.resorttitle h2 
{
	
	margin-bottom: 15px;
}





/* ============================================================
   PAGE WRAPPER — grid: content | sidebar
   ============================================================ */
.page-wrapper {
  display: grid;
  grid-template-columns: 1fr var(--nav-w);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

/* ============================================================
   CONTENT AREA — left box
   ============================================================ */
.content-area {
  min-width: 0;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
}

/* ============================================================
   SECTION BLOCKS
   ============================================================ */
.section-block {
  padding: 64px 48px;
  border-bottom: 1px solid var(--border);
}
.section-block:last-child {
  border-bottom: none;
}

.section-alt {
  background: var(--bg-alt);
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.section-block h1,
.section-block h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-block > p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.highlight {
  color: var(--accent);
}

/* ============================================================
   RIGHT SECTION NAV — box
   ============================================================ */
.section-nav {
  width: var(--nav-w);
  position: sticky;
  top: 32px;
  padding: 20px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
  padding-left: 6px;
}

.section-nav nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ============================================================
   NAV PILLS
   ============================================================ */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: 'Mukta', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: transparent;
}

.nav-pill i {
  width: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-pill:hover {
  background: var(--accent-light);
  color: var(--accent);
}
.nav-pill:hover i {
  color: var(--accent);
}

.nav-pill.active {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.3);
}
.nav-pill.active i {
  color: #fff;
}

.nav-pill:focus { outline: none; }
.nav-pill:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ============================================================
   DROPDOWN NAV GROUP
   ============================================================ */
.nav-group {
  display: flex;
  flex-direction: column;
}

.nav-pill.has-dropdown {
  justify-content: space-between;
  text-align: left;
}

.nav-pill.has-dropdown:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.nav-pill.has-dropdown.open {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.3);
}
.nav-pill.has-dropdown.open i {
  color: #fff;
}

.arrow {
  font-size: 11px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: var(--text-light);
}
.nav-pill.has-dropdown.open .arrow {
  transform: rotate(90deg);
  color: #fff;
}

/* Dropdown panel */
.dropdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
  padding-left: 10px;
  margin-top: 8px;
}
.dropdown.open {
  max-height: 300px;
  opacity: 1;
}

.drop-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  border-left: 2px solid var(--border);
}
.drop-link i {
  width: 14px;
  text-align: center;
  font-size: 12px;
}
.drop-link:hover {
  color: var(--accent);
  background: var(--accent-light);
  border-left-color: var(--accent);
  padding-left: 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: 'Mukta', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.3);
}
.btn-primary:hover {
  background: #5b21b6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* ============================================================
   ABOUT CARDS
   ============================================================ */
.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(109, 40, 217, 0.1);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
}

.card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.card p  { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   SERVICES LIST
   ============================================================ */
.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.service-item:last-child { border-bottom: none; }
.service-item:hover { padding-left: 8px; }

.svc-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 44px;
}

.svc-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}

.svc-icon {
  font-size: 22px;
  color: var(--accent);
}

.svc-right h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.svc-right p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.6;
}

.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags span {
  font-size: 11px;
  font-weight: 600;
  background: var(--accent-light);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.portfolio-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.port-thumb {
  height: 160px;
}
.thumb-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.thumb-2 { background: linear-gradient(135deg, #0acffe, #495aff); }
.thumb-3 { background: linear-gradient(135deg, #f093fb, #f5576c); }

.port-body { padding: 18px; }
.port-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-2);
}
.port-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 6px 0 5px;
  color: var(--text-dark);
}
.port-body p { font-size: 14px; color: var(--text-light); }

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}
.team-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.1);
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.av-1 { background: linear-gradient(135deg, #7c3aed, #06b6d4); }
.av-2 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.av-3 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.av-4 { background: linear-gradient(135deg, #ec4899, #8b5cf6); }

.team-card h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.team-card p { font-size: 13px; color: var(--text-light); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Mukta', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.12);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .page-wrapper {
    grid-template-columns: 1fr;
    padding: 0 12px;
    gap: 16px;
  }
  
  .section-nav {
    grid-row: 1;
    width: 100%;
    position: sticky;
    top: 12px;
    z-index: 1000;
    padding: 10px 14px;
  }
  
  .content-area {
    grid-row: 2;
  }

  .nav-title {
    display: none;
  }

  .section-nav nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .nav-pill {
    width: auto;
    padding: 8px 12px;
    font-size: 13px;
  }

  .nav-group {
    position: relative;
  }

  .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 1010;
    min-width: 150px;
    padding: 8px;
    margin-top: 6px;
  }
  
  .drop-link {
    border-left: none;
    padding: 6px 10px;
  }
  .drop-link:hover {
    padding-left: 10px;
  }

  .section-block {
    padding: 36px 16px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-family: 'Mukta', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}
