.navbar,
.testimonial-card,
.why-card {
  backdrop-filter: blur(10px);
}
.blog-tag,
.categories-list a,
.comment-reply,
.footer-links a,
.page-link,
.read-more,
.recent-post-title a,
.tag {
  text-decoration: none;
}
.blog-detail-hero,
.blog-hero,
.custom-hero,
.faq-header,
.login-link,
.newsletter,
.package-card .card-body,
.related-title,
.section-subtitle,
.section-title,
.signup-form h2,
.signup-image,
.social-login,
.stat-item,
.still-have-questions {
  text-align: center;
}
:root {
  --primary-color: #2c5aa0;
  --secondary-color: #f8a31b;
  --accent-color: #17a2b8;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Poppins, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.section-title,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  padding: 15px 0;
}
.destination-card,
.package-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
}
.navbar-brand i {
  margin-right: 10px;
  font-size: 1.5rem;
  color: var(--secondary-color);
}
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 8px;
  transition: 0.3s;
  position: relative;
  padding: 8px 12px;
  border-radius: 10px;
}
.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(44, 90, 160, 0.1);
}
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: var(--secondary-color);
}
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.blog-detail-hero,
.blog-hero,
.custom-hero,
.hero,
.signup-hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(44, 90, 160, 0.6), rgba(44, 90, 160, 0.6)),
    url("../images/photo-1506929562872-bb421503ef21.jpeg") center/cover
      no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.signup-hero {
  height: 60vh;
  min-height: 500px;
}
.blog-detail-hero {
  background-image: url("../images/photo-1503917988258-f87a78e3c995.jpeg");
}
.custom-hero {
  background-image: url("../images/photo-1431274172761-fca41d930114.jpeg");
}
.blog-detail-hero::before,
.blog-hero::before,
.custom-hero::before,
.hero::before,
.signup-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0,
    rgba(0, 0, 0, 0.4) 100%
  );
}
.blog-detail-hero-content,
.blog-hero-content,
.hero-content,
.signup-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}
.blog-detail-hero h1,
.blog-hero h1,
.hero h1,
.signup-hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}
.blog-detail-hero p,
.blog-hero p,
.hero p,
.signup-hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  z-index: 1;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  z-index: -1;
}
.btn-primary:hover::before {
  width: 100%;
}
.btn-primary:hover {
  background-color: #e6930f;
  border-color: #e6930f;
  box-shadow: 0 8px 20px rgba(248, 163, 27, 0.4);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.destination-card {
  border: none;
  border-radius: 15px;
  transition: 0.4s;
  position: relative;
  background-color: #fff;
}
.destination-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(44, 90, 160, 0.8) 0,
    rgba(44, 90, 160, 0.1) 50%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
}
.destination-card:hover::before {
  opacity: 1;
}
.destination-card:hover {
  transform: translateY(-8px);
}
.destination-card img {
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s;
  width: 100%;
}
.blog-post:hover .blog-post-img img,
.destination-card:hover img,
.related-post:hover .related-post-img img {
  transform: scale(1.05);
}
.destination-card .card-body {
  padding: 1.8rem;
  position: relative;
  z-index: 2;
  transition: 0.4s;
}
.destination-card:hover .card-body {
  transform: translateY(-20px);
}
.destination-card .card-title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.destination-card:hover .card-title {
  color: #fff;
}
.destination-card .card-text {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  transition: color 0.3s;
}
.destination-card:hover .card-text {
  color: rgba(255, 255, 255, 0.9);
}
.destination-card .btn,
.sample-itinerary .btn {
  padding: 8px 20px;
  font-size: 0.9rem;
  border-radius: 20px;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: 0.3s;
}
.destination-card:hover .btn {
  background-color: #fff;
  color: var(--primary-color);
  border-color: #fff;
}
.package-section {
  background: linear-gradient(135deg, #f5f7fa 0, #e4e8eb 100%);
  position: relative;
  overflow: hidden;
}
.package-section::after,
.package-section::before {
  content: "";
  position: absolute;
  background-color: rgba(248, 163, 27, 0.1);
  border-radius: 50%;
}
.package-section::before {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
}
.package-section::after {
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(44, 90, 160, 0.1);
}
.package-card {
  border: none;
  border-radius: 15px;
  transition: 0.4s;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.package-card .card-body {
  padding: 2.5rem;
}
.package-card i {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.package-card .card-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.package-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.package-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: var(--text-light);
}
.package-features li:last-child {
  border-bottom: none;
}
.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 1.5rem 0;
}
.package-duration,
.package-price span {
  color: var(--text-light);
  font-size: 1rem;
}
.package-price span {
  font-weight: 400;
}
.package-duration {
  margin-bottom: 1.5rem;
  display: block;
}
.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.footer,
.footer-title {
  position: relative;
  color: #fff;
}
.footer {
  background-color: var(--text-dark);
  padding: 80px 0 30px;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--secondary-color),
    transparent
  );
}
.back-to-top,
.footer-title::after {
  width: 50px;
  background-color: var(--secondary-color);
}
ol,
ul {
  padding-left: 0;
}
.btn-outline-light {
  border-radius: 40px;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
}
.footer-contact-info i,
.footer-logo i {
  color: var(--secondary-color);
  margin-right: 10px;
}
.footer-about p {
  margin-bottom: 20px;
  opacity: 0.8;
}
.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 10px;
}
#preloader,
.back-to-top {
  position: fixed;
  display: flex;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
}
#preloader,
.back-to-top:hover {
  background-color: var(--primary-color);
}
.footer-links li {
  margin-bottom: 12px;
  list-style: none;
}
.footer-links a {
  color: #bdc3c7;
  transition: 0.3s;
  display: block;
  opacity: 0.8;
}
.footer-links a:hover {
  color: var(--secondary-color);
  opacity: 1;
  padding-left: 5px;
}
.footer-contact-info li {
  margin-bottom: 15px;
  list-style: none;
  display: flex;
  align-items: flex-start;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
}
.footer-copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}
.footer-payments i,
.footer-payments img {
  height: 30px;
  margin-left: 15px;
  transition: 0.3s;
}
.footer-payments i:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
}
.back-to-top {
  bottom: 30px;
  right: 30px;
  height: 50px;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.about-image,
.about-stats,
.contact-form {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-5px);
}
#preloader {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out;
}
.loader-logo,
.page-link {
  display: flex;
  align-items: center;
}
.loader {
  width: 100px;
  height: 100px;
  position: relative;
}
.loader-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 8px solid transparent;
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: 1.5s linear infinite spin;
}
.loader-circle:nth-child(2) {
  border-top-color: #fff;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  animation: 1.8s linear infinite spin-reverse;
}
.loader-circle:nth-child(3) {
  border-top-color: var(--accent-color);
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  animation: 2s linear infinite spin;
}
.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.about-content,
.about-section,
.contact-section,
.custom-hero,
.destination-selector,
.process-step,
.search-form,
.testimonial-text,
.testimonials,
.why-choose-us {
  position: relative;
}
.loader-logo i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 1.8rem;
}
.feature-text h4,
.page-link {
  color: var(--primary-color);
  font-weight: 600;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin-reverse {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.pagination-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 5px;
}
.page-item {
  margin: 0;
}
.page-link {
  justify-content: center;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  transition: 0.3s;
}
.social-links a,
.testimonial-author {
  display: flex;
  align-items: center;
}
.page-item.active .page-link,
.page-link:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
@media (max-width: 1199.98px) {
  .blog-detail-hero h1,
  .blog-hero h1,
  .hero h1,
  .signup-hero h1 {
    font-size: 4rem;
  }
}
@media (max-width: 991.98px) {
  .blog-detail-hero h1,
  .blog-hero h1,
  .hero h1,
  .signup-hero h1 {
    font-size: 3.5rem;
  }
  .section {
    padding: 80px 0;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .about-image {
    margin-bottom: 40px;
  }
  #destinations .section-title {
    margin-top: 30px;
  }
  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
  }
  .navbar-nav .dropdown-menu {
    position: static !important;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
@media (max-width: 767.98px) {
  .blog-detail-hero,
  .blog-hero,
  .custom-hero,
  .hero,
  .signup-hero {
    min-height: 600px;
  }
  .blog-detail-hero h1,
  .blog-hero h1,
  .hero h1,
  .signup-hero h1 {
    font-size: 2.8rem;
  }
  .blog-detail-hero p,
  .blog-hero p,
  .hero p,
  .signup-hero p {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .section {
    padding: 60px 0;
  }
  .contact-form,
  .contact-info,
  .package-card .card-body {
    padding: 2rem;
  }
  .footer {
    padding: 60px 0 30px;
  }
}
@media (max-width: 575.98px) {
  .blog-detail-hero h1,
  .blog-hero h1,
  .hero h1,
  .signup-hero h1 {
    font-size: 2.2rem;
  }
  .blog-detail-hero p,
  .blog-hero p,
  .hero p,
  .signup-hero p {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .btn-primary {
    padding: 10px 25px;
    font-size: 1rem;
  }
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.testimonials {
  background-color: var(--primary-color);
  color: #fff;
  padding: 100px 0;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/photo-1499678329028-101435549a4e.jpeg")
    center/cover;
  opacity: 0.1;
}
.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin: 15px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.testimonial-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}
.why-choose-us::after,
.why-choose-us::before {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.05);
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: -20px;
  left: -15px;
  font-family: serif;
}
.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--secondary-color);
}
.about-image,
.about-stats,
.why-card {
  border-radius: 15px;
}
.author-info h5 {
  margin-bottom: 0;
  font-weight: 600;
}
.author-info p {
  font-size: 0.9rem;
  opacity: 0.8;
}
.rating {
  color: var(--secondary-color);
  margin-top: 5px;
}
.about-section {
  background-color: var(--bg-light);
}
.about-content {
  z-index: 1;
}
.about-image {
  overflow: hidden;
  transition: transform 0.4s;
}
.about-image:hover {
  transform: scale(1.03);
}
.about-image img,
.blog-detail-img img {
  width: 100%;
  height: auto;
  display: block;
}
.about-stats {
  background-color: var(--primary-color);
  color: #fff;
  padding: 3rem;
  margin-top: 30px;
}
.feature-icon,
.stat-number {
  color: var(--secondary-color);
}
.stat-item {
  padding: 15px;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}
.contact-info-item,
.feature-box {
  display: flex;
  margin-bottom: 25px;
}
.feature-icon {
  flex: 0 0 60px;
  height: 60px;
  background-color: rgba(248, 163, 27, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.5rem;
}
.feature-text h4 {
  margin-bottom: 5px;
}
.why-choose-us {
  background: linear-gradient(135deg, var(--primary-color) 0, #1a3a6e 100%);
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}
.social-links a,
.why-card {
  background-color: rgba(255, 255, 255, 0.1);
}
.why-choose-us::before {
  content: "";
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
.why-choose-us::after {
  content: "";
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
}
.why-card {
  padding: 30px;
  margin-bottom: 30px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}
.contact-form,
.contact-info {
  padding: 3rem;
  border-radius: 15px;
  height: 100%;
}
.why-card:hover {
  transform: translateY(-10px);
}
.why-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: inline-block;
}
.why-card h4 {
  margin-bottom: 15px;
  font-weight: 600;
}
.contact-form {
  background-color: #fff;
}
.contact-form .form-control {
  height: 50px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.contact-form textarea.form-control {
  height: auto;
  min-height: 150px;
}
.contact-info {
  background-color: var(--primary-color);
  color: #fff;
}
.contact-info-icon {
  flex: 0 0 50px;
  height: 50px;
  background-color: rgba(248, 163, 27, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--secondary-color);
  font-size: 1.2rem;
}
.contact-info-text h5 {
  font-weight: 600;
  margin-bottom: 5px;
}
.social-links {
  display: flex;
  margin-top: 30px;
}
.social-links a {
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}
.custom-hero,
.process-step .step-number {
  color: #fff;
  display: flex;
  align-items: center;
}
.author-social a:hover,
.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}
.custom-hero {
  height: 60vh;
  min-height: 500px;
  background: linear-gradient(rgba(44, 90, 160, 0.7), rgba(44, 90, 160, 0.7)),
    url("../images/photo-1431274172761-fca41d930114.jpeg") center/cover
      no-repeat;
  justify-content: center;
  animation: 1s ease-in-out fadeIn;
}
.process-step {
  padding-left: 40px;
  margin-bottom: 30px;
  transition: 0.5s;
}
.process-step:hover {
  transform: translateY(-5px);
}
.process-step .step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  justify-content: center;
  font-weight: 700;
  transition: 0.3s;
}
.signup-image,
.social-btn {
  align-items: center;
  display: flex;
}
.process-step:hover .step-number {
  transform: scale(1.2);
  background-color: var(--primary-color);
}
.itinerary-builder {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: 0.5s;
}
.itinerary-builder:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.day-card {
  border-left: 4px solid var(--secondary-color);
  margin-bottom: 2rem;
  padding-left: 1rem;
  transition: 0.3s;
}
.activity-card {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: 0.3s;
  transform-origin: center;
}
.activity-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.destination-options {
  position: absolute;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  display: none;
  animation: 0.3s ease-out fadeInUp;
}
.blog-detail-hero,
.blog-hero,
.btn-primary,
.newsletter-form,
.section,
.section-title,
.social-login p {
  position: relative;
}
.author-avatar,
.blog-detail-hero,
.blog-detail-img,
.blog-hero,
.blog-post,
.blog-post-img,
.btn-primary,
.comment-avatar,
.gallery-item,
.recent-post-img,
.related-post,
.related-post-img,
.signup-card {
  overflow: hidden;
}
.destination-option {
  padding: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.destination-option:hover {
  background-color: var(--bg-light);
  transform: translateX(5px);
}
.sample-itinerary {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  transform: translateY(0);
}
.sample-itinerary:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.sample-itinerary img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s;
}
.sample-itinerary:hover img {
  transform: scale(1.1);
}
.btn-primary {
  transition: 0.4s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(248, 163, 27, 0.3);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.btn-primary:hover::after {
  transform: translateX(0);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.floating {
  animation: 4s ease-in-out infinite float;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-delay-1 {
  animation-delay: 0.2s;
}
.animate-delay-2 {
  animation-delay: 0.4s;
}
.animate-delay-3 {
  animation-delay: 0.6s;
}
@media (max-width: 767.98px) {
  .custom-hero {
    height: 50vh;
    min-height: 400px;
  }
}
.destination-card:hover {
  background-color: #fff !important;
  box-shadow: none !important;
}
.whitetitle {
  color: #fff !important;
}
.signup-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}
.signup-container {
  max-width: 900px;
  margin: 0 auto;
}
.signup-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.signup-image {
  background: linear-gradient(rgba(44, 90, 160, 0.7), rgba(44, 90, 160, 0.7)),
    url("../images/photo-1508672019048-805c876b67e2.jpeg") center/cover
      no-repeat;
  height: 100%;
  justify-content: center;
  color: #fff;
  padding: 40px;
}
.signup-image h3,
.still-have-questions h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.signup-form h2,
.signup-image p {
  margin-bottom: 30px;
}
.signup-form {
  padding: 50px;
  background-color: #fff;
}
.signup-form h2 {
  color: var(--primary-color);
}
.form-control {
  height: 50px;
  margin-bottom: 20px;
}
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.form-check-label {
  color: var(--text-light);
}
.login-link {
  margin-top: 20px;
}
.login-link a {
  color: var(--primary-color);
  font-weight: 600;
}
.comment-reply:hover,
.login-link a:hover {
  text-decoration: underline;
}
.social-login {
  margin-top: 30px;
}
.social-login p {
  color: var(--text-light);
  margin-bottom: 20px;
}
.social-login p::after,
.social-login p::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background-color: #ddd;
}
.social-login p::before {
  left: 0;
}
.social-login p::after {
  right: 0;
}
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}
.blog-hero,
.blog-post-meta {
  align-items: center;
  display: flex;
}
.social-btn:hover {
  transform: translateY(-3px);
}
.btn-google {
  background-color: #db4437;
}
.btn-facebook {
  background-color: #4267b2;
}
.btn-twitter {
  background-color: #1da1f2;
}
.blog-hero {
  height: 50vh;
  min-height: 400px;
  background: linear-gradient(rgba(44, 90, 160, 0.6), rgba(44, 90, 160, 0.6)),
    url("../images/photo-1506929562872-bb421503ef21.jpeg") center/cover
      no-repeat;
  justify-content: center;
  color: #fff;
}
.blog-post,
.sidebar-widget {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.blog-detail-hero h1,
.blog-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}
.blog-hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.blog-detail-section,
.blog-section,
.faq-section {
  padding: 80px 0;
}
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-post {
  margin-bottom: 60px;
  transition: 0.4s;
}
.blog-post:hover,
.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.blog-post-img {
  height: 350px;
}
.blog-post-img img,
.related-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-post-content {
  padding: 30px;
}
.blog-post-meta {
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 0.9rem;
}
.blog-post-meta span {
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.blog-post-meta i {
  margin-right: 5px;
  color: var(--secondary-color);
}
.blog-post-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.blog-post-excerpt {
  margin-bottom: 20px;
  color: var(--text-light);
}
.read-more {
  color: var(--secondary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}
.page-link,
.search-form button {
  align-items: center;
  display: flex;
}
.read-more:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}
.blog-tag:hover,
.search-form button,
.tag:hover {
  color: #fff;
  background-color: var(--secondary-color);
}
.read-more i {
  margin-left: 5px;
  transition: 0.3s;
}
.read-more:hover i {
  transform: translateX(3px);
}
.blog-sidebar {
  padding-left: 30px;
}
.sidebar-widget {
  padding: 25px;
  margin-bottom: 30px;
}
.widget-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary-color);
  color: var(--primary-color);
}
.search-form input {
  width: 100%;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
}
.search-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  justify-content: center;
  transition: 0.3s;
}
.categories-list span,
.page-link,
.tag {
  background-color: var(--bg-light);
}
.search-form button:hover {
  background-color: var(--primary-color);
}
.categories-list {
  list-style: none;
  padding: 0;
}
.blog-detail-text li,
.categories-list li {
  margin-bottom: 10px;
}
.categories-list a {
  color: var(--text-light);
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.categories-list a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.categories-list span {
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.8rem;
}
.recent-post {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.comment:last-child,
.recent-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.recent-post-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  margin-right: 15px;
  flex-shrink: 0;
}
.author-avatar img,
.comment-avatar img,
.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-post-title {
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.recent-post-date,
.tag {
  color: var(--text-light);
  font-size: 0.8rem;
}
.recent-post-title a {
  color: var(--text-dark);
  transition: 0.3s;
}
.blog-detail-meta-item i,
.recent-post-title a:hover,
.related-post-title a:hover {
  color: var(--secondary-color);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  padding: 5px 12px;
  border-radius: 20px;
  transition: 0.3s;
}
.author-social a,
.page-link:hover {
  background-color: var(--primary-color);
}
.pagination {
  justify-content: center;
  margin-top: 50px;
}
.page-item.active .page-link {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.page-link {
  color: var(--primary-color);
  margin: 0 5px;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  justify-content: center;
  border: none;
}
.page-link:hover {
  color: #fff;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.blog-detail-hero {
  height: 60vh;
  min-height: 500px;
  background: linear-gradient(rgba(44, 90, 160, 0.6), rgba(44, 90, 160, 0.6)),
    url("../images/photo-1503917988258-f87a78e3c995.jpeg") center/cover
      no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.blog-detail-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.blog-detail-meta-item {
  display: flex;
  align-items: center;
  margin: 0 15px 10px;
  font-size: 0.95rem;
}
.blog-detail-meta-item i {
  margin-right: 8px;
}
.blog-detail-container {
  margin: 0 auto;
}
.blog-detail-content {
  background-color: #fff;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.blog-author,
.blog-tag,
.comment-reply-form {
  background-color: var(--bg-light);
}
.blog-detail-img {
  margin-bottom: 40px;
  border-radius: 15px;
}
.blog-detail-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}
.blog-detail-text h2,
.blog-detail-text h3,
.blog-detail-text h4 {
  margin: 40px 0 20px;
  color: var(--primary-color);
}
.blog-detail-text h2 {
  font-size: 2rem;
}
.blog-detail-text h3 {
  font-size: 1.6rem;
}
.blog-detail-text h4 {
  font-size: 1.3rem;
}
.blog-detail-text blockquote {
  border-left: 4px solid var(--secondary-color);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: var(--text-light);
  font-size: 1.2rem;
}
.blog-detail-text ol,
.blog-detail-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.blog-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.gallery-item {
  border-radius: 10px;
  transition: 0.3s;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
}
.blog-tag {
  color: var(--text-light);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: 0.3s;
}
.blog-author {
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 15px;
  margin: 50px 0;
}
.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 30px;
  flex-shrink: 0;
  border: 3px solid var(--secondary-color);
}
.author-info h4 {
  margin: 0 0 10px;
  color: var(--primary-color);
}
.author-info p {
  margin-bottom: 15px;
  color: var(--text-light);
}
.author-social {
  display: flex;
  gap: 10px;
}
.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.comment-form,
.comments-section {
  margin-top: 60px;
}
.comment-form-title,
.comments-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}
.comment-form-title::after,
.comments-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}
.comment {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.comment-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}
.comment-content {
  flex-grow: 1;
}
.comment-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.comment-author {
  font-weight: 600;
  color: var(--primary-color);
}
.comment-date,
.related-post-date {
  color: var(--text-light);
  font-size: 0.9rem;
}
.comment-text {
  margin-bottom: 15px;
}
.comment-form p,
.form-group,
.newsletter h3 {
  margin-bottom: 20px;
}
.comment-reply {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
}
.comment-reply i {
  margin-left: 5px;
}
.comment-reply-form {
  margin-left: 90px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(44, 90, 160, 0.25);
}
textarea.form-control {
  min-height: 150px;
}
.form-submit {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.form-submit:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.2);
}
.related-posts {
  margin-top: 80px;
}
.related-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}
.related-post {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  margin-bottom: 30px;
}
.related-post-img {
  height: 200px;
}
.related-post-content {
  padding: 20px;
}
.related-post-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.related-post-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}
.newsletter {
  background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(44, 90, 160, 0.8)),
    url("../images/photo-1526778548025-fa2f459cd5c1.jpeg") center/cover
      no-repeat;
  padding: 80px 0;
  color: #fff;
}
.newsletter h3 {
  font-size: 2.5rem;
}
.newsletter p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}
.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-form .form-control {
  height: 55px;
  border-radius: 50px;
  border: none;
  padding: 0 25px;
  font-size: 1rem;
}
.newsletter-form .btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  position: absolute;
  right: 1px;
  top: 1px;
}
.section {
  padding: 100px 0;
}
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  color: var(--primary-color);
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}
.section-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  color: var(--text-light);
}
.btn-outline-primary {
  color: #2c5aa0;
  border-color: #2c5aa0;
  border-radius: 40px;
}
.faq-header {
  background: linear-gradient(135deg, #1e3c72 0, #2a5298 100%);
  color: #fff;
  padding: 100px 0 60px;
  margin-top: 76px;
}
.faq-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.faq-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
.accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.accordion-button {
  background: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.2rem 1.5rem;
  box-shadow: none;
  border: none;
  color: #1e3c72;
}
.accordion-button:not(.collapsed) {
  background: #f8f9fa;
  color: #ff6b6b;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}
.accordion-body {
  padding: 1.5rem;
  color: #555;
  line-height: 1.7;
}
.faq-category {
  margin-bottom: 40px;
}
.faq-category h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1e3c72;
  border-left: 4px solid #ff6b6b;
  padding-left: 15px;
}
.still-have-questions {
  background: #f8f9fa;
  padding: 60px 0;
  margin-top: 40px;
}
.still-have-questions .btn-contact {
  background: #ff6b6b;
  border: none;
  padding: 12px 30px;
  font-weight: 500;
  margin-top: 15px;
}
.still-have-questions .btn-contact:hover {
  background: #ff5252;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .faq-header {
    padding: 80px 0 40px;
  }
  .faq-header h1 {
    font-size: 2rem;
  }
}

/* ============================================
   Enhanced Privacy Policy Page Styles
   Modern, Attractive, and Responsive
   ============================================ */

/* Variables for consistency */
:root {
    --privacy-primary: #ff6b35;
    --privacy-primary-dark: #e55a2b;
    --privacy-secondary: #2c3e66;
    --privacy-accent: #00b4aa;
    --privacy-light: #f8f9fa;
    --privacy-dark: #1a2632;
    --privacy-gray: #6c757d;
    --privacy-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    --privacy-border-radius: 20px;
    --privacy-transition: all 0.3s ease;
}

/* Terms Section - Main Container */
.terms-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.terms-section::before,
.terms-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, rgba(255,107,53,0) 70%);
    z-index: 0;
}

.terms-section::before {
    top: -100px;
    left: -100px;
}

.terms-section::after {
    bottom: -100px;
    right: -100px;
}

/* Content Card */
.terms-section .col-lg-12 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    border-radius: var(--privacy-border-radius);
    padding: 40px 50px;
    box-shadow: var(--privacy-shadow);
    position: relative;
    z-index: 1;
    transition: var(--privacy-transition);
    border: 1px solid rgba(255,255,255,0.3);
}

.terms-section .col-lg-12:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.15);
}

/* Section Title */
.terms-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--privacy-primary), var(--privacy-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.terms-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--privacy-primary), var(--privacy-accent));
    border-radius: 2px;
}

/* Lead paragraph */
.terms-section .lead {
    font-size: 1.1rem;
    color: var(--privacy-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: justify;
}

/* Headings (h4) */
.terms-section h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--privacy-secondary);
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--privacy-primary);
    transition: var(--privacy-transition);
}

.terms-section h4:hover {
    border-left-width: 8px;
    padding-left: 24px;
    color: var(--privacy-primary);
}

/* First h4 after title */
.terms-section h4:first-of-type {
    margin-top: 1rem;
}

/* Paragraphs inside sections */
.terms-section p.lead {
    margin-bottom: 1.5rem;
    padding-left: 20px;
    border-left: 2px solid rgba(0,180,170,0.2);
}

/* Add icons to each section using pseudo-elements */
.terms-section h4 {
    counter-increment: section;
}

.terms-section h4::before {
    content: '●';
    color: var(--privacy-primary);
    font-size: 1.2rem;
    margin-right: 10px;
    opacity: 0.8;
    display: inline-block;
    transition: var(--privacy-transition);
}

.terms-section h4:hover::before {
    transform: scale(1.2);
    opacity: 1;
}

/* Custom bullet for each section (optional alternative) */
.terms-section h4:nth-of-type(1)::before { content: '🔒'; }
.terms-section h4:nth-of-type(2)::before { content: '📊'; }
.terms-section h4:nth-of-type(3)::before { content: '🤝'; }
.terms-section h4:nth-of-type(4)::before { content: '🛡️'; }
.terms-section h4:nth-of-type(5)::before { content: '🍪'; }
.terms-section h4:nth-of-type(6)::before { content: '⚖️'; }
.terms-section h4:nth-of-type(7)::before { content: '📢'; }

/* Last paragraph (agreement) */
.terms-section p.mt-3.lead {
    margin-top: 2rem !important;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(44,62,102,0.08));
    border-radius: 12px;
    border-left: 4px solid var(--privacy-primary);
    font-weight: 500;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .terms-section .col-lg-12 {
        padding: 30px 25px;
    }
    .terms-section .section-title {
        font-size: 2.5rem;
    }
    .terms-section h4 {
        font-size: 1.4rem;
    }
    .terms-section .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .terms-section {
        padding: 100px 0 60px;
    }
    .terms-section .col-lg-12 {
        padding: 20px 15px;
    }
    .terms-section .section-title {
        font-size: 2rem;
    }
    .terms-section h4 {
        font-size: 1.3rem;
        padding-left: 12px;
    }
    .terms-section p.lead {
        padding-left: 12px;
    }
}

/* Animation on scroll (optional, requires AOS or similar, but here just fade-in) */
.terms-section .animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

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