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

html,body {
    margin: 0;
      font-family: 'Montserrat';
    width: 100%;
    overflow-x: hidden;
}


/* top-section */


.color{
  color:#c83063;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    

    height: 57px;
    padding: 0 27px;

    background-color: #1F2F5D;
    
}


.top-bar-left-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar img {
  
    padding-right: 11.25px;
    border-right: 1.13px solid #FFFFFF;
}

.top-bar-text {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration:none;
   
}

.uder-line{
  text-decoration:none;
  color:#ffffff;
  font-weight:500;
}

.top-bar-right-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration: none;
}

.top-bar-right-dot {
    width: 4.5px;
    height: 4.5px;
    background-color: #FFFFFF;
    border-radius: 50%;
}


.navbar-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    width: 100%;
    
   
    
    z-index: 1000;
    padding: 18px 27px;
    

    background-color: #FFFFFF;
}
.navbar-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.top-bar,
.navbar-section {
    width: 100%;
    max-width: 100%;
}


.navbar-left,
.navbar-right {
    display: flex;
    gap: 20px;
}

.navbar-left-right-links {
   font-size:15.75px;
    letter-spacing: 0.11em;
    color: #1F2F5D;
    text-decoration: none;
}

.navbar-logo img {
    width: 78px;
    height: auto;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #1F2F5D;
}


.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 24px;
    background-color: #FFFFFF;
    border-top: 1px solid #ddd;

     position: fixed;         
    top: 62px;        
                
    left: 0;                   
    width: 100%;               
    z-index: 999;              
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 14px;
   
    color: #1F2F5D;
    text-decoration: none;
    font-family: 'Montserrat';
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 16px 0;
}

.mobile-menu.active {
    display: flex;
}


@media (max-width: 768px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 20px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 24px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    
    .hamburger {
        display: flex;
    }
}
 

 

/* Elders page styling */
.ke-hero {
  position: relative;
  width: 100%; 
  height: 100vh;
  min-height: 600px;
  margin: 0;
  padding: 0;
  background: url("assets/images/elders-page-hero-image.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.ke-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.4)
  );
  z-index: 1;
}

.ke-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #f4f4f1;
  max-width: 900px;
  padding: 0 24px;
  animation: keFadeUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes keFadeUp { 
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ke-eyebrow {
  display: inline-block;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 24px;
}

.ke-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px); 
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 32px;
}

.ke-highlight {
  opacity: 0.6;
}

.ke-text {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}


@media (max-width: 768px) {
  .ke-desktop-only {
    display: none;
  }
}

/* Extra Large Screens (2K, 4K) */
@media (min-width: 1920px) {
  .ke-content {
    max-width: 1100px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .ke-hero {
    height: 90vh; 
  }
  .ke-title {
    margin-bottom: 20px;
  }
}


/* Journeys That Honour Section Styling */

.mj-journeys-section {
  width: 100%;
  background: #FDF8F0;
  padding: clamp(60px, 8vw, 100px) 20px;
  font-family: 'Montserrat', sans-serif;
}

.mj-container {
  max-width: 1200px; 
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}

.mj-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.mj-eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: #7F9272;
  margin-bottom: 18px;
  display: block;
  font-weight: 600;
} 

.mj-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  color: #2E2E2E;
}

.mj-highlight {
  color: #8FA182;
}

.mj-divider {
  width: 40px;
  height: 1px;
  background: #D8D8D8;
  margin: 24px auto;
}

.mj-lead {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.8;
  color: #6F6F6F;
}

.mj-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 32px;
}

.mj-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column; 
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  cursor: pointer;
}

.mj-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.mj-card-image {
  position: relative;
  height: 240px; 
}

.mj-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mj-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50px;
  color: #6E8461;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mj-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mj-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  color: #2E2E2E;
  margin-bottom: 12px;
}

.mj-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #6F6F6F;
  margin-bottom: 20px;
}

.mj-card-link {
  font-size: 13px;
  color: #7F9272;
  text-decoration: none;
  font-weight: 700;
  margin-top: auto;
  transition: gap 0.3s ease;
}

.mj-card-link:hover {
  text-decoration: underline;
}

/* Extra Large Screens */
@media (min-width: 1600px) {
  .mj-container {
    max-width: 1400px;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 1024px) {
  .mj-container {
    padding: 0 40px;
  }
}

/* Small Devices (Phones) */
@media (max-width: 768px) {
  .mj-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .mj-card-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .mj-journeys-section {
    padding: 60px 15px;
  }
}




/* Comfort and care section styling  */
.cc-comfort-section {
  width: 100%;
  background-color: #F5F0E6;
  padding: clamp(60px, 10vw, 120px) 24px;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #4A4A4A;
}

.cc-container {
  max-width: 1400px; 
  margin: 0 auto;
}

.cc-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.cc-subtitle {
  font-size: 12px;
  letter-spacing: 3px;
  color: #8C8C8C;
  margin-bottom: 20px;
  font-weight: 600;
}

.cc-main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: #333;
}

.cc-main-title span {
  color: #7E9680;
  font-style: italic;
}

.cc-divider {
  width: 40px;
  height: 1px;
  background-color: #D1CEC7;
  margin: 0 auto 24px;
}

.cc-description {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: #666;
}

.cc-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.cc-feature-card {
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-image: radial-gradient(circle at top right, rgba(245, 240, 230, 0.3) 0%, transparent 50%);
  border: 1px solid rgba(0,0,0,0.02);
}

.cc-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

.cc-icon-wrapper {
  background: #F8F7F3;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.cc-icon-wrapper img {
  width: 28px;
  height: 28px;
  opacity: 0.7;
}

.cc-card-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: #333;
}

.cc-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #777;
  margin: 0;
}

/* Large/Medium (Laptops/Tablets) */
@media (max-width: 1100px) {
  .cc-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Small (Mobile) */
@media (max-width: 600px) {
  .cc-cards-grid {
    grid-template-columns: 1fr;
  }
  .cc-header {
    margin-bottom: 40px;
  }
  .cc-feature-card {
    padding: 30px;
  }
}




/* Travel with Family Section styling */

.tf-travel-section {
  width: 100%;
  background: #F5F0E6;
  padding: clamp(60px, 8vw, 120px) 24px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  color: #4A4A4A;
}

.tf-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(50px, 6vw, 100px);
}

/* Hero Section Grid */
.tf-hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.tf-section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #8B9E82;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.tf-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  color: #333;
  margin: 0 0 24px 0;
}

.tf-hero-title span {
  color: #8C9C82;
  font-style: italic;
}

.tf-hero-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  max-width: 520px;
  color: #666;
  margin-bottom: 45px;
}

/* Stats Styling */
.tf-stats-row {
  display: flex;
  gap: 40px;
  border-top: 1px solid #E5E0D6;
  padding-top: 35px;
}

.tf-stat-item {
  display: flex;
  flex-direction: column;
}

.tf-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #8C9C82;
  font-weight: 500;
}

.tf-stat-label {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

/* Image & Badge */
.tf-hero-image-wrapper {
  position: relative;
}

.tf-main-img {
  width: 100%;
  height: clamp(300px, 30vw, 450px);
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.tf-testimonial-badge {
  position: absolute;
  bottom: 25px;
  left: -30px;
  background: white;
  padding: 18px 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  max-width: 280px;
}

.tf-quote-icon {
  background: #8B9E821A;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B9E82;
  flex-shrink: 0;
}

.tf-quote {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: #3A3D35;
  margin: 0 0 4px 0;
}

.tf-author {
  font-size: 11px;
  color: #999;
  margin: 0;
}

/* Cards Grid */
.tf-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tf-package-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.tf-package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.04);
  border-color: #E5E0D6;
}

.tf-card-title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 16px 0;
  color: #333;
}

.tf-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.tf-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.tf-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #8A8572;
  font-weight: 500;
}

.tf-meta-item img {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.tf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  margin-top: auto;
}

.tf-tag {
  background: #F8F7F3;
  color: #6E8461;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  border: 1px solid #EEEAE2;
}

.tf-view-link {
  text-decoration: none;
  font-size: 13px;
  color: #8C8C8C;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.tf-view-link:hover {
  color: #8B9E82;
}

/* Responsiveness */

/* Large screens (Laptop) */
@media (max-width: 1200px) {
  .tf-hero-container { gap: 40px; }
  .tf-package-card { padding: 30px; }
}

/* Medium (Tablets) */
@media (max-width: 1024px) {
  .tf-hero-container { grid-template-columns: 1fr; }
  .tf-hero-image-wrapper { order: -1; } 
  .tf-main-img { height: 400px; }
  .tf-cards-container { grid-template-columns: repeat(2, 1fr); }
  .tf-testimonial-badge { left: 20px; bottom: -15px; }
}

/* Small (Mobile) */
@media (max-width: 650px) {
  .tf-cards-container { grid-template-columns: 1fr; }
  .tf-hero-title { font-size: 34px; }
  .tf-stats-row { gap: 20px; }
  .tf-stat-number { font-size: 22px; }
  .tf-testimonial-badge { position: relative; left: 0; bottom: 0; margin-top: 20px; width: 100%; box-sizing: border-box; }
}



/* Leave Footprints Section styling  */
.lf-footprints-hero {
  width: 100%;
  min-height: 600px;
  height: 70vh; 
  position: relative;
  background-image: url('assets/images/elders-page-leave-footprints-image.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  margin: 0 auto;
}

.lf-hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.2) 0%, 
    rgba(0, 0, 0, 0.5) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  box-sizing: border-box;
}

.lf-hero-content {
  max-width: 900px;
  color: #FFFFFF;
  animation: lfFadeUp 1s ease-out;
}

@keyframes lfFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.lf-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
  color: #ffffff;
}

.lf-italic-text {
  font-style: italic;
  color: #A8B5A0; 
}

.lf-hero-subtitle {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 48px;
  color: rgba(200, 212, 192, 0.8);
  font-weight: 300;
}

.lf-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; 
}

.lf-btn {
  padding: 16px 36px;
  border-radius: 50px; 
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: inherit;
  text-decoration: none;
}

.lf-btn-primary {
  background-color: #8C9C82; 
  color: white;
}

.lf-btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #A8B5A0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.lf-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.lf-btn-primary:hover {
  background-color: #7a8a71;
}

.lf-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Extra Large Screens (4K / 2K) */
@media (min-width: 1920px) {
  .lf-footprints-hero {
    height: 50vh; 
    min-height: 700px;
  }
}

/* Mobile Breakpoints */
@media (max-width: 768px) {
  .lf-footprints-hero {
    height: auto;
    min-height: 550px;
  }
  
  .lf-hero-title {
    font-size: 42px; 
  }
}

@media (max-width: 480px) {
  .lf-cta-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .lf-btn {
    width: 100%;
    max-width: 300px;
  }

  .lf-hero-overlay {
    padding: 60px 20px;
  }
}



/* Footer Section */


.footer {
  width: 100%;

  padding: 15px 32px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: center;
  border-bottom: 0.45px solid #e5e7eb;
  padding-bottom: 24px;
  gap: 180px;
}

.footer-column {
  width: 182px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column li {
  font-size: 18px;
  color: #374151;
  font-family: "Montserrat";
}

.footer-middle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px;
  padding-top:20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 80px;
}

.footer-tagline {
  font-size: 14px;
  color: #6b7280;
}

.footer-subscribe {
  position: relative;
  width: 260px;
}

.footer-subscribe input {
  width: 100%;
  height: 42px;
  padding: 0 90px 0 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.footer-subscribe button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.footer-description {
  width: 377px;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social h4 {
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 18px 0;
  font-size: 13px;
  color: #6b7280;
  gap: 400px;
}

.footer-bottom p {
  font-size: 17px;
}

@media (max-width: 767px) {
  .footer {
    width: 100%;
    padding: 24px 16px;
    gap: 36px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    align-items: center;
  }

  .footer-column ul {
    align-items: center;
  }

  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer {
    width: 100%;
    padding: 40px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 64px;
    row-gap: 32px;
    text-align: left;
  }

  .footer-column {
    width: 100%;
  }

  .footer-middle {
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    max-width: 360px;
    font-size: 22px;
    line-height: 32px;
  }
}