:root {
  --green: #2ecc71;
  --green-dark: #27ae60;
  --navy: #1a2340;
  --navy-light: #253155;
  --white: #ffffff;
  --offwhite: #f7f9f6;
  --text: #333333;
  --text-light: #666666;
  --border: #e0e6df;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  --transition: 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14.4px;
  transition: background var(--transition), transform var(--transition);
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.view-detail-btn {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}

.view-detail-btn:hover {
  background: var(--green);
  color: var(--white);
}

.booking-btn {
  background: var(--green);
  color: var(--white);
}

/* =========================================
           HERO BANNER
        ========================================= */
.banner-sec {
  min-height: 92vh;
  background: linear-gradient(135deg, rgba(26, 35, 64, 0.75) 0%, rgba(26, 35, 64, 0.45) 100%),
    url('https://www.srilankatravelpackages.com/app/images/home/banner.avif') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.banner-text {
  max-width: 680px;
  color: var(--white);
}

.banner-text h1 {
  font-family: var(--font-family);
  font-size: clamp(32px, 4.5vw, 54.4px);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 22px;
}

.banner-text h1 span {
  color: var(--green);
}

.banner-text p {
  font-size: 16.8px;
  opacity: 0.92;
  margin-bottom: 32px;
  line-height: 1.8;
  color: #ffffff;
}

.banner-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14.4px;
  transition: all var(--transition);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* Trust strip */
.trust-strip {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px;
  margin-top: 60px;
}

.trust-items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.trust-item i {
  color: var(--green);
  font-size: 19.2px;
}

.trust-item strong {
  font-size: 15.2px;
  font-weight: 600;
}

.trust-item span {
  font-size: 12.5px;
  opacity: 0.8;
}

/* =========================================
           COMMON HEADINGS
        ========================================= */
.common-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.common-heading h2 {
  font-family: var(--font-family);
  font-size: clamp(25.6px, 3vw, 36.8px);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
}

.common-heading p {
  color: var(--text-light);
  font-size: 16px;
}

.section-label {
  display: inline-block;
  background: rgba(46, 204, 113, 0.12);
  color: var(--green-dark);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 14px 0;
}

/* =========================================
           WHY SRI LANKA — INTRO
        ========================================= */
.intro-sec {
  padding: 80px 0 40px;
  background: var(--offwhite);
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  font-family: var(--font-family);
  font-size: clamp(25.6px, 3vw, 35.2px);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.intro-text p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.intro-checklist {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intro-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.9px;
}

.intro-checklist li i {
  color: var(--green);
  margin-top: 4px;
  flex-shrink: 0;
}

.intro-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.intro-image-grid img {
  border-radius: var(--radius);
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.intro-image-grid img:first-child {
  grid-column: span 2;
  height: 250px;
}

/* =========================================
           PACKAGE CARDS
        ========================================= */
.package-sec {
  padding: 80px 0;
  background: var(--white);
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
}

.package-card figure {
  overflow: hidden;
  height: 210px;
}

.package-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.package-card:hover figure img {
  transform: scale(1.06);
}

.package-card .text-bottom {
  padding: 20px;
}

.location {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.location-icon {
  color: var(--text-light);
  font-size: 13.1px;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.star-rating ul {
  display: flex;
  gap: 2px;
}

.star-rating ul li i {
  color: #f4c430;
  font-size: 12px;
}

.star-rating span {
  color: var(--text-light);
  font-size: 12.5px;
}

.package-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.package-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.package-price li:first-child {
  font-size: 12px;
  color: var(--text-light);
}

.package-price li:last-child {
  font-size: 17.6px;
  font-weight: 700;
  color: var(--green-dark);
}

.package-price li:last-child span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
}

.booking-div {
  display: flex;
  gap: 10px;
}

.booking-div .btn {
  flex: 1;
  justify-content: center;
  font-size: 13.1px;
  padding: 9px 12px;
}

/* =========================================
           MID BANNER — Experience
        ========================================= */
.introducing-bg-sec {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(26, 35, 64, 0.82) 0%, rgba(26, 35, 64, 0.55) 100%),
    url('https://www.srilankatravelpackages.com/app/images/home/experience-the-magic-of-sri-lanka.webp') center/cover no-repeat;
  color: var(--white);
}

.introducing-bg-sec h2 {
  font-family: var(--font-family);
  font-size: clamp(28.8px, 3.5vw, 44.8px);
  line-height: 1.3;
  margin-bottom: 16px;
}

.introducing-bg-sec p {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.9;
  max-width: 480px;
  margin-bottom: 28px;
}

/* =========================================
           ACTIVITIES
        ========================================= */
.activities-sec {
  padding: 80px 0;
  background: var(--offwhite);
  overflow: hidden;
}

.bg-heading {
  font-family: var(--font-family);
  font-size: clamp(48px, 8vw, 96px);
  color: rgba(26, 35, 64, 0.06);
  text-align: center;
  font-weight: 900;
  letter-spacing: 6px;
  margin-bottom: -20px;
  text-transform: uppercase;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: default;
}

.activity-card:hover,
.activity-card.active {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.25);
}

.activity-card:hover h4,
.activity-card.active h4 {
  color: var(--white);
}

.icon-box {
  margin-bottom: 16px;
}

.icon-box img {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  object-fit: contain;
}

.activity-card h4 {
  font-size: 14.1px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  transition: color var(--transition);
}

.activity-card {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.activity-card .icon-box {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* =========================================
           UNVEIL BANNER
        ========================================= */
.unveil-sec {
  padding: 110px 0;
  background: linear-gradient(135deg, rgba(26, 35, 64, 0.75) 0%, rgba(46, 204, 113, 0.25) 100%),
    url('https://www.srilankatravelpackages.com/app/images/home/unveil-the-wonders2.webp') center/cover no-repeat;
  color: var(--white);
}

.unveil-sec .banner-text {
  max-width: 700px;
}

.unveil-sec h2 {
  font-family: var(--font-family);
  font-size: clamp(28.8px, 3.5vw, 44.8px);
  margin-bottom: 18px;
  line-height: 1.3;
}

.unveil-sec p {
  font-size: 16px;
  opacity: 0.92;
  margin-bottom: 28px;
  line-height: 1.8;
}

/* =========================================
           WHY ARABIERS
        ========================================= */
.why-travel-sec {
  padding: 80px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.why-card {
  background: var(--navy);
  border-radius: 20px 20px 20px 0;
  padding: 32px 26px;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(26, 35, 64, 0.25);
}

.why-card .icon-box {
  width: 54px;
  height: 54px;
  background: rgb(46 204 113);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-card .icon-box img {
  width: 28px;
  filter: brightness(5);
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.why-card p {
  color: #fff;
  font-size: 13.6px;
  opacity: 0.8;
  line-height: 1.7;
}

.why-card .green-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================
           BLOG SECTION
        ========================================= */
.blog-secton {
  padding: 80px 0;
  background: var(--offwhite);
}

.blog-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.blog-main-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.blog-main-card:hover {
  transform: translateY(-5px);
}

.blog-main-card .img-box {
  height: 220px;
  overflow: hidden;
}

.blog-main-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-main-card:hover .img-box img {
  transform: scale(1.05);
}

.blog-main-card .text-bottom {
  padding: 20px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.blog-category {
  font-size: 12px;
  color: var(--green-dark);
  font-weight: 600;
}

.date {
  font-size: 12px;
  color: var(--text-light);
}

.blog-main-card h3 {
  font-size: 15.7px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
}

.blog-main-card p {
  font-size: 13.4px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.7;
}

.read-more {
  color: var(--green-dark);
  font-size: 13.4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-list-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-list {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.blog-list:hover {
  transform: translateX(4px);
}

.blog-list .img-box {
  width: 80px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-list .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-list .content h4 {
  font-size: 13.6px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.4;
}

.blog-list .content span {
  font-size: 12px;
  color: var(--text-light);
}

/* =========================================
           FAQ SECTION
        ========================================= */
.faq-sec {
  padding: 80px 0;
  background: var(--white);
}

.faq-sec h2 {
  font-family: var(--font-family);
  font-size: clamp(25.6px, 3vw, 35.2px);
  color: var(--navy);
  text-align: center;
  margin-bottom: 50px;
}

.accordion-common {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.at-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.at-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.at-title {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  user-select: none;
}

.at-title h3 {
  font-size: 15.2px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

.at-title::after {
  content: '\f078';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  color: var(--green);
  font-size: 13.6px;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.at-item.active .at-title::after {
  transform: rotate(180deg);
}

.at-tab {
  display: none;
  padding: 0 24px 20px;
}

.at-item.open .at-tab {
  display: block;
}

.at-tab p {
  font-size: 14.4px;
  color: var(--text-light);
  line-height: 1.8;
}

.at-tab p a {
  color: var(--green-dark);
  text-decoration: underline;
}

/* =========================================
           PACKAGE SLIDER STRIP (3-up)
        ========================================= */
.pkg-strip {
  background: var(--navy);
  padding: 28px 0;
}

.pkg-strip-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.pkg-strip-item {
  flex: 1;
  min-width: 220px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.pkg-strip-item:last-child {
  border-right: none;
}

.pkg-strip-item .pkg-name {
  font-size: 13.1px;
  opacity: 0.75;
  margin-bottom: 4px;
}

.pkg-strip-item .pkg-price {
  font-size: 19.2px;
  font-weight: 700;
  color: var(--green);
}

.pkg-strip-item .pkg-price span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.pkg-strip-item .pkg-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.pkg-strip-item .pkg-actions a {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 600;
}

/* =========================================
           RESPONSIVE
        ========================================= */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-inner {
    grid-template-columns: 1fr;
  }

  .intro-image-grid {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-row {
    grid-template-columns: 1fr 1fr;
  }

  .blog-list-col {
    display: none;
  }
}

@media (max-width: 768px) {

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .blog-row {
    grid-template-columns: 1fr;
  }

  .pkg-strip-inner {
    flex-direction: column;
  }

  .pkg-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
.trust-items {
    gap: 20px;
  }

  .banner-text h1 {
    font-size: 28.8px;
  }
}

@media (max-width: 767px) {
  .banner-ctas .btn ,
  .banner-ctas .btn-outline-white {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
      .activities-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}