/* =============================================
   MUSAFIR'S KAFELA - Main Stylesheet
   ============================================= */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Noto+Sans+Bengali:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap");

/* ---- CSS Variables ---- */
:root {
  --green-dark: #1b4332;
  --green-mid: #2d6a4f;
  --green-sage: #4a7c59;
  --gold: #c9a84c;
  --gold-light: #e8c87a;
  --gold-pale: #f5e6be;
  --cream: #faf7f0;
  --cream-dark: #f0ebe0;
  --charcoal: #1c1c1c;
  --gray-soft: #6b7280;
  --white: #ffffff;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Noto Sans Bengali", "Lato", sans-serif;
  --font-ui: "Lato", sans-serif;

  --radius-arch: 50% 50% 0 0 / 60% 60% 0 0;
  --shadow-card: 0 4px 24px rgba(27, 67, 50, 0.1);
  --shadow-gold: 0 4px 16px rgba(201, 168, 76, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ---- Arabesque Divider ---- */
.divider-arabesque {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem auto;
}
.divider-arabesque::before,
.divider-arabesque::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.divider-arabesque::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.divider-arabesque .gem {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ---- Section Labels ---- */
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-dark);
  line-height: 1.25;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-mk {
  background: var(--green-dark);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 2px solid var(--gold);
}
.navbar-mk .navbar-brand img {
  height: 52px;
  width: auto;
}
.navbar-mk .navbar-brand span {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.navbar-mk .navbar-brand small {
  display: block;
  font-family: var(--font-ui);
  color: var(--gold-pale);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.navbar-mk .nav-link {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-pale) !important;
  padding: 0.5rem 0.85rem !important;
  transition: color var(--transition);
  position: relative;
}
.navbar-mk .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.navbar-mk .nav-link:hover::after,
.navbar-mk .nav-link.active::after {
  left: 0.85rem;
  right: 0.85rem;
}
.navbar-mk .nav-link:hover,
.navbar-mk .nav-link.active {
  color: var(--gold) !important;
}
.navbar-mk .navbar-toggler {
  border-color: var(--gold);
}
.navbar-mk .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C9A84C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-nav-contact {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  padding: 0.4rem 1.2rem !important;
  font-size: 0.83rem !important;
  letter-spacing: 0.05em;
  border: none !important;
  transition: background var(--transition);
}
.btn-nav-contact:hover {
  background: var(--gold-light) !important;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-carousel .carousel-item {
  height: 90vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}
.hero-carousel .carousel-item .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.carousel-item.active .hero-bg {
  transform: scale(1);
}

.hero-carousel .carousel-caption-mk {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 2;
}
.hero-arabic {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.hero-title .highlight {
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  margin: 1rem auto 1.5rem;
}
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.hero-badge {
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.btn-hero-primary {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-family: var(--font-ui);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
  color: var(--green-dark);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-family: var(--font-ui);
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(27, 67, 50, 0.7);
  border-radius: 50%;
  padding: 1.5rem;
  background-size: 50%;
}

/* ---- Scroll indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}
.scroll-indicator i {
  color: var(--gold);
  font-size: 1.5rem;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--green-dark);
  padding: 1.8rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--gold-pale);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ============================================
   ABOUT SECTION (HOME)
   ============================================ */
.section-pad {
  padding: 5rem 0;
}
.section-pad-sm {
  padding: 3.5rem 0;
}

.about-home {
  background: var(--cream);
}
.about-img-wrap {
  position: relative;
  display: inline-block;
}
.about-img-arch {
  width: 100%;
  max-width: 400px;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  border: 5px solid var(--gold);
  object-fit: cover;
  height: 480px;
}
.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  text-align: center;
}
.about-badge-float strong {
  font-size: 1.5rem;
  line-height: 1;
}
.about-badge-float span {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.about-feature-list {
  list-style: none;
  padding: 0;
}
.about-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.97rem;
}
.about-feature-list li i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--cream-dark);
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(27, 67, 50, 0.15);
}
.service-icon {
  width: 72px;
  height: 72px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
}
.service-icon i {
  font-size: 1.6rem;
  color: var(--green-dark);
}
.service-card h5 {
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-soft);
  line-height: 1.6;
}

/* ============================================
   PACKAGE SECTION
   ============================================ */
.package-section {
  background: var(--green-dark);
}
.package-section .section-title {
  color: var(--white);
}
.package-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.pkg-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  height: 100%;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.pkg-card.featured {
  border: 2px solid var(--gold);
}
.pkg-header {
  background: var(--green-mid);
  padding: 1.5rem;
  text-align: center;
  position: relative;
}
.pkg-card.featured .pkg-header {
  background: var(--gold);
}
.pkg-badge-top {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}
.pkg-card.featured .pkg-badge-top {
  background: var(--green-dark);
  color: var(--gold);
}
.pkg-name {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
}
.pkg-card.featured .pkg-name {
  color: var(--green-dark);
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 0.5rem 0;
}
.pkg-card.featured .pkg-price {
  color: var(--green-dark);
}
.pkg-price-unit {
  font-size: 1rem;
  font-weight: 400;
}
.pkg-duration {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.pkg-card.featured .pkg-duration {
  color: rgba(27, 67, 50, 0.8);
}

.pkg-body {
  padding: 1.75rem;
}
.pkg-room-table {
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}
.pkg-room-table th {
  background: var(--gold-pale);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.pkg-features {
  list-style: none;
  padding: 0;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}
.pkg-features li i {
  color: var(--green-sage);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}
.pkg-features li.excluded i {
  color: #dc2626;
}
.pkg-features li.excluded {
  opacity: 0.7;
}

.btn-pkg {
  background: var(--green-dark);
  color: var(--gold);
  border: 2px solid var(--green-dark);
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-ui);
  padding: 0.7rem 1.8rem;
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
  letter-spacing: 0.05em;
}
.btn-pkg:hover,
.pkg-card.featured .btn-pkg {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.pkg-card.featured .btn-pkg:hover {
  background: var(--green-dark);
  color: var(--gold);
  border-color: var(--green-dark);
}

/* ============================================
   WHY US / PRINCIPLES
   ============================================ */
.principles-section {
  background: var(--cream);
}
.principle-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.principle-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid var(--gold);
}
.principle-card h6 {
  font-family: var(--font-display);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  background: var(--cream-dark);
}
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 67, 50, 0.12);
}
.team-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-arch);
  border: 4px solid var(--gold);
  overflow: hidden;
  margin: 0 auto 1.25rem;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-img-wrap i {
  font-size: 3rem;
  color: var(--green-mid);
}
.team-role {
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.team-card h5 {
  font-family: var(--font-display);
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.team-card p {
  font-size: 0.88rem;
  color: var(--gray-soft);
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-section {
  background: var(--green-dark);
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  line-height: 1;
  opacity: 0.4;
}
.testimonial-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.97rem;
  padding-top: 1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  color: var(--white);
  font-size: 0.9rem;
  display: block;
}
.testimonial-author span {
  color: var(--gold-light);
  font-size: 0.8rem;
}
.stars i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    var(--gold) 100%
  );
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(27, 67, 50, 0.8);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.btn-cta-dark {
  background: var(--green-dark);
  color: var(--gold);
  border: 2px solid var(--green-dark);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-cta-dark:hover {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-main {
  background: #0d2b1d;
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--gold);
}
.footer-brand span {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
}
.footer-brand small {
  display: block;
  color: var(--gold-pale);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  line-height: 1.7;
}
.footer-heading {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-links a i {
  margin-right: 0.4rem;
  color: var(--gold);
  font-size: 0.8rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
}
.footer-contact-item a:hover {
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom a {
  color: var(--gold);
}

/* ============================================
   INNER PAGES — PAGE HERO
   ============================================ */
/* .page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .page-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  position: relative;
}
.page-hero .page-subtitle {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  position: relative;
}
.breadcrumb-mk {
  display: flex; gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  position: relative;
}
.breadcrumb-mk a { color: var(--gold-pale); }
.breadcrumb-mk a:hover { color: var(--gold); }
.breadcrumb-mk .sep { color: var(--gold); }
.breadcrumb-mk .current { color: var(--gold); } */

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid .gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 67, 50, 0.8) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  background: var(--cream);
}
.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i {
  color: var(--green-dark);
  font-size: 1.1rem;
}
.contact-info-text strong {
  display: block;
  color: var(--green-dark);
  font-weight: 700;
}
.contact-info-text span,
.contact-info-text a {
  color: var(--gray-soft);
  font-size: 0.92rem;
}
.contact-info-text a:hover {
  color: var(--gold);
}
.form-control-mk {
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  background: var(--cream);
  width: 100%;
}
.form-control-mk:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.btn-submit {
  background: var(--green-dark);
  color: var(--gold);
  border: 2px solid var(--green-dark);
  border-radius: 50px;
  padding: 0.8rem 2.5rem;
  font-weight: 700;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.05em;
}
.btn-submit:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.timeline {
  position: relative;
  padding: 1rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--green-sage));
}
.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.85rem;
}
.timeline-content {
  background: var(--white);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
  flex: 1;
  border-left: 3px solid var(--gold);
}
.timeline-content h5 {
  color: var(--green-dark);
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--gray-soft);
  margin: 0;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-gold {
  color: var(--gold);
}
.text-green {
  color: var(--green-dark);
}
.bg-cream {
  background: var(--cream);
}
.bg-green {
  background: var(--green-dark);
}
.font-display {
  font-family: var(--font-display);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .hero-carousel .carousel-item {
    height: 70vh;
  }
  .about-img-arch {
    max-width: 300px;
    height: 360px;
  }
}
@media (max-width: 767px) {
  .hero-carousel .carousel-item {
    height: 85vh;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section-pad {
    padding: 3.5rem 0;
  }
  .pkg-card {
    margin-bottom: 1.5rem;
  }
  .stats-bar .col-6 {
    margin-bottom: 1rem;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-dot {
    width: 42px;
    height: 42px;
    font-size: 0.7rem;
  }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i {
  color: white;
  font-size: 1.6rem;
}
@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}
