body {
  margin: 0;
   font-family: "Livvic", sans-serif;
}

section {
	padding: 90px 0 100px 0;
}

/* NAVBAR */
.navbar {
  position: absolute;
  width: 100%;
  z-index: 1000;
  padding: 20px 50px;
}

.logo img {
  height: 45px;
}

.navbar-nav {
  margin-left: auto;
}

.nav-link {
  color: #fff !important;
  font-size: 14px;
  margin-left: 25px;
}

/* Slider Container */
#heroSlider {
  position: relative;
  overflow: hidden;
}

/* Carousel Items */
#heroSlider .carousel-item {
  height: 100vh;
  min-height: 700px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Parallax effect on background */
#heroSlider .carousel-item {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  #heroSlider .carousel-item {
    background-attachment: scroll;
    height: 90vh;
    min-height: 600px;
  }
}

/* Enhanced Dark Overlay - gradient instead of solid */
#heroSlider .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

/* Subtle secondary overlay for depth */
#heroSlider .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Slide transition animation for content */
.carousel-item .hero-content {
  animation: fadeInUp 0.8s ease-out;
}

/* Badge / Tagline */
.hero-content .badge-tag {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom:25px;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f4a300;
  text-transform: uppercase;
 
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(244, 163, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(244, 163, 0, 0);
  }
}

/* Main Heading */
.hero-content h1 {
  font-family: "Livvic", sans-serif;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color:#ffffff;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content .badge-tag {
    font-size: 0.7rem;
    padding: 6px 15px;
  }
}

/* Subtitle / Description */
.hero-content .subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* CTA Button */
.btn-book-enhanced {
  background: linear-gradient(135deg, #f4a300 0%, #f59e0b 100%);
  padding: 16px 45px;
  border-radius: 60px;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(244, 163, 0, 0.35);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-book-enhanced i {
  transition: transform 0.3s ease;
}

.btn-book-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(244, 163, 0, 0.45);
  background: linear-gradient(135deg, #e89500 0%, #e68a00 100%);
}

.btn-book-enhanced:hover i {
  transform: translateX(5px);
}

.btn-book-enhanced:active {
  transform: translateY(1px);
}

/* Shine effect */
.btn-book-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-book-enhanced:hover::before {
  left: 100%;
}

/* DOTS / Indicators - Enhanced */
.carousel-indicators {
  bottom: 40px;
  z-index: 5;
  gap: 12px;
}

.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: rgba(255,255,255,0.5) !important;
  transition: all 0.3s ease;
  margin: 0 0px !important;
  border: none !important;
  opacity: 1 !important;
}

.carousel-indicators button.active {

  border-radius: 20px !important;
  background: #0e7e75 !important;
 
}

/* Optional: Carousel Controls (Arrows) - Hidden by default but can be enabled */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

#heroSlider:hover .carousel-control-prev,
#heroSlider:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.scroll-down span {
  display: block;
  width: 30px;
  height: 50px;
  margin: 0 auto;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 30px;
  position: relative;
}

.scroll-down span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Loading animation for slides */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content .subtitle {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  
  .btn-book-enhanced {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: 15px;
  }
  
  .carousel-control-next {
    right: 15px;
  }
}

/* Slide transition custom */
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  transition: transform 0.8s ease-in-out;
}
/* FEATURES */
.features {
  background: #f5f5f5;
  padding: 25px 0;
      box-shadow: rgb(0 0 0 / 27%) 0px 3px 5px;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: left;
}

.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #0e7e75;
  display: flex;
  align-items: center;
  justify-content: center;
      font-size: 35px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}
.navbar-brand img{
width:80px;
}

.nav-link {
    color: #fff !important;
    font-size: 16px;
    margin-left: 25px;
}




/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-weight: 600;
  color: #2d2d2d;
}

.section-title span {
  color: #0f766e;
}

.section-title .line {
  width: 60px;
  height: 3px;
  background: #f4a300;
  margin: 10px auto 0;
}

/* CARDS */
.card-custom {
  background: #fff;
  border-radius: 12px;
  padding: 30px ;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
      min-height: 172px;
}

.card-custom:hover {
  transform: translateY(-5px);
}

/* ICON */
.icon-circle {
  width: 80px;
  height: 80px;
  background: #e6f4f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}

/* TEXT */
.card-custom h5 {
  color: #0f766e;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-custom p {
  font-size: 14px;
  color: #6c757d;
}

/* HOW IT WORKS */
.how-section {
  background: #eef2f3;

}

/* STEP BADGE */
.step-badge {
  width: 45px;
  height: 45px;
  background: #0f766e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -40px auto 15px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.sub-text {
  text-align: center;
  color: #6c757d;
  margin-bottom: 40px;
}


 /* base reset for this section only - scoped */
    .dest-slider-section {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
      padding: 90px 0 100px;
      position: relative;
      overflow: hidden;
    }

    /* decorative elements - fully scoped */
    .dest-slider-section::before {
      content: "";
      position: absolute;
      top: -80px;
      right: -80px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(15,118,110,0.03) 0%, rgba(15,118,110,0) 70%);
      border-radius: 50%;
      z-index: 0;
    }

    .dest-slider-section::after {
      content: "";
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(244,163,0,0.04) 0%, rgba(244,163,0,0) 70%);
      border-radius: 50%;
      z-index: 0;
    }

    .dest-slider-container {
      position: relative;
      z-index: 2;
    }

    /* TITLE STYLES – unique */
    .dest-slider-title {
      font-weight: 700;
      font-size: 2.8rem;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
    }

    .dest-slider-title span {
      background: linear-gradient(120deg, #0f766e, #14b8a6);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      font-weight: 800;
      display: inline-block;
    }

    .dest-underline {
      width: 90px;
      height: 4px;
      background: linear-gradient(90deg, #f4a300, #facc15, #f4a300);
      margin: 16px auto 48px;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(244,163,0,0.2);
      transition: width 0.4s ease;
    }

    .dest-slider-section:hover .dest-underline {
      width: 130px;
    }

    /* CARD – premium look with unique names */
    .dest-card {
      border-radius: 28px;
      overflow: hidden;
      background: #ffffff;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
      transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
      cursor: pointer;
      position: relative;
      border: 1px solid rgba(255,255,255,0.3);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .dest-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.2);
    }

    .dest-card-img-wrapper {
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }

    .dest-card-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.6s ease;
      display: block;
    }

    .dest-card:hover .dest-card-img {
      transform: scale(1.05);
    }

    /* gradient overlay on hover */
    .dest-card-img-wrapper::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s;
    }

    .dest-card:hover .dest-card-img-wrapper::after {
      opacity: 1;
    }

    .dest-card-content {
      padding: 22px 18px 24px;
      text-align: left;
      background: #fff;
      flex: 1;
    }

    .dest-card-title {
      font-weight: 700;
      font-size: 1.35rem;
      margin: 0 0 6px 0;
      letter-spacing: -0.3px;
      color: #0f172a;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .dest-card-title i {
      font-size: 1.1rem;
      color: #f4a300;
    }

    .dest-card-location {
      font-size: 0.85rem;
      color: #5b6e8c;
      margin: 0;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .dest-card-location i {
      font-size: 0.75rem;
      color: #0f766e;
    }

    .dest-rating {
      margin-top: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      color: #f4a300;
    }

    .dest-rating span {
      color: #64748b;
      font-weight: 500;
      margin-left: 4px;
    }

    /* ARROWS – unique class names + high specificity */
    .dest-carousel-control-prev,
    .dest-carousel-control-next {
      width: 44px !important;
      height: 44px !important;
      background: white !important;
      border-radius: 60px !important;
      top: 45% !important;
      opacity: 1 !important;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12) !important;
      transition: all 0.25s ease !important;
      border: 1px solid rgba(0,0,0,0.05) !important;
    }

    .dest-carousel-control-prev:hover,
    .dest-carousel-control-next:hover {
      background: #0f766e !important;
      transform: scale(1.08);
    }

    .dest-carousel-control-prev:hover .dest-carousel-control-prev-icon,
    .dest-carousel-control-next:hover .dest-carousel-control-next-icon {
      filter: brightness(0) invert(1);
    }

    .dest-carousel-control-prev-icon,
    .dest-carousel-control-next-icon {
      width: 20px !important;
      height: 20px !important;
      background-size: 20px !important;
      filter: invert(0.3);
      transition: filter 0.2s;
    }

    /* DOTS – unique namespace */
    .dest-carousel-indicators {
      position: absolute;
      bottom: -45px !important;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .dest-carousel-indicators button {
      width: 10px !important;
      height: 10px !important;
      border-radius: 20px !important;
      background-color: #cbd5e1 !important;
      opacity: 0.7;
      transition: all 0.3s ease;
      border: none !important;
      margin: 0 4px !important;
      padding: 0 !important;
      cursor: pointer;
    }

    .dest-carousel-indicators .dest-active-indicator {
      width: 28px !important;
      background: linear-gradient(90deg, #0f766e, #14b8a6) !important;
      opacity: 1;
    }

    /* Override bootstrap defaults for this section only - scoped */
    .dest-slider-section .carousel-item {
      transition: transform 0.6s ease-in-out, opacity 0.4s;
    }

    /* card shine effect */
    .dest-card {
      position: relative;
    }
    .dest-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transform: skewX(-25deg);
      transition: left 0.6s;
      z-index: 2;
      pointer-events: none;
    }
    .dest-card:hover::before {
      left: 150%;
    }

    /* responsive */
    @media (max-width: 768px) {
      .dest-slider-section {
        padding: 60px 0 80px;
      }
      .dest-slider-title {
        font-size: 2rem;
      }
      .dest-card-title {
        font-size: 1.2rem;
      }
      .dest-carousel-control-prev,
      .dest-carousel-control-next {
        width: 36px !important;
        height: 36px !important;
        top: 42% !important;
      }
    }

    /* ensure no global leakage */
    .dest-slider-section .row {
      margin-left: 0;
      margin-right: 0;
    }
    .dest-slider-section [class*="col-"] {
      padding-left: 12px;
      padding-right: 12px;
    }
	
	
	.top-section {
  background: linear-gradient(135deg, #2f9c8f, #1f7f73);
  color: #fff;
  text-align: center;
  padding: 80px 20px 120px;
  position: relative;
  overflow: hidden;
}

/* CURVE SHAPE */
.top-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 180px;
  background: #1f7f73;
  border-top-left-radius: 100% 80px;
  border-top-right-radius: 100% 80px;
}

/* TEXT */
.top-section h2 {
  font-weight: 600;
}

.top-section p {
  max-width: 700px;
  margin: 15px auto 0;
  line-height: 1.7;
  opacity: 0.9;
}

/* WHY SECTION */
.why-section {
  text-align: center;
}

/* TITLE */
.why-section h2 {
  font-weight: 600;
}

.why-section span {
  color: #0f766e;
}

.underline {
  width: 60px;
  height: 3px;
  background: #f4a300;
  margin: 10px auto 50px;
}

/* CARDS */
.why-card {
  background: #fff;
  padding: 25px 45px;
  border-radius: 12px;
  text-align: left;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
}

/* BIG NUMBER */
.why-card .number {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 40px;
  font-weight: 700;
  color: rgba(15,118,110,0.2);
}

/* TEXT */
.why-card h6 {
  color: #0f766e;
  font-weight: 600;
}

.why-card p {
  font-size: 14px;
  color: #6c757d;
}


/* ========================================
   ENHANCED CTA SECTION
   ======================================== */
.cta-enhanced {
  background: linear-gradient(135deg, #fef9e3 0%, #fdf4d6 50%, #fef7e8 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* animated dot pattern */
.cta-enhanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e8d9a3 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.5;
  animation: subtleMove 40s linear infinite;
}

@keyframes subtleMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* floating decorative circles */
.cta-enhanced::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-enhanced h2 {
  font-family: "Livvic", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-enhanced p {
  font-size: 1.2rem;
  color: #475569;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 500;
}

/* enhanced button with glow effect */
.cta-btn-enhanced {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  color: #fff;
  padding: 16px 42px;
  border-radius: 60px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(15,118,110,0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cta-btn-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(15,118,110,0.4);
  background: linear-gradient(135deg, #0d6b64 0%, #0f9e8e 100%);
}

.cta-btn-enhanced:active {
  transform: translateY(1px);
}

/* shine effect on button */
.cta-btn-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta-btn-enhanced:hover::before {
  left: 100%;
}

/* ========================================
   ENHANCED FOOTER
   ======================================== */
.footer-enhanced {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 50%, #1a1f2e 100%);
  color: #cbd5f5;
  padding: 70px 0 25px;
  position: relative;
}

/* subtle top border glow */
.footer-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}

.footer-enhanced h5, 
.footer-enhanced h6 {
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
}

.footer-enhanced h5 {
  color: #fbbf24;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-enhanced h6 {
  color: #f59e0b;
  font-size: 1.1rem;
}

/* underline effect for headings */
.footer-enhanced h6::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #f59e0b;
  border-radius: 2px;
}

.footer-enhanced p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #a0aec0;
}

.footer-enhanced a {
  display: block;
  color: #a0aec0;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.25s ease;
  position: relative;
  padding-left: 0;
}

.footer-enhanced a:hover {
  color: #fbbf24;
  transform: translateX(5px);
}

/* contact info with icons */
.contact-info {
  margin-top: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #a0aec0;
}

.contact-item i {
  width: 24px;
  color: #f59e0b;
  font-size: 14px;
}

.contact-item a {
  display: inline;
  padding: 0;
  margin: 0;
  color: #a0aec0;
}

.contact-item a:hover {
  transform: none;
  color: #fbbf24;
}

/* footer button */
.footer-btn-enhanced {
  border: 2px solid #f59e0b;
  color: #f59e0b;
  padding: 12px 28px;
  border-radius: 40px;
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 10px;
}

.footer-btn-enhanced:hover {
  background: #f59e0b;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245,158,11,0.3);
}

/* social icons */
.social-icons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #cbd5f5;
  font-size: 16px;
  transition: all 0.3s ease;
  margin: 0;
}

.social-icons a:hover {
  background: #f59e0b;
  color: #0f172a;
  transform: translateY(-3px);
}

/* copyright */
.copy-enhanced {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding-top: 25px;
  font-size: 13px;
  text-align:left;
  color: #7e8aa2;
}

.copy-enhanced a {
  display: inline;
  color: #f59e0b;
  margin: 0;
  padding: 0;
}

.copy-enhanced a:hover {
  transform: none;
  text-decoration: underline;
}

/* responsive adjustments */
@media (max-width: 768px) {
  .cta-enhanced {
    padding: 60px 20px;
  }
  
  .cta-enhanced h2 {
    font-size: 2rem;
  }
  
  .cta-enhanced p {
    font-size: 1rem;
  }
  
  .footer-enhanced {
    padding: 50px 0 20px;
  }
  
  .footer-enhanced .row > div {
    margin-bottom: 30px;
  }
}

/* hover card effect for contact column */
.contact-card {
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

/* newsletter style hint */
.newsletter-hint {
  margin-top: 20px;
  font-size: 12px;
  color: #7e8aa2;
}

.contact-card img{
	width:70px;
	margin-bottom:20px;
}

.contact-card hr{
	max-width:80%;
}