@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #0F2E4A;
  /* Deep Indigo/Teal */
  --secondary: #E05D36;
  /* Vibrant Saffron/Orange */
  --accent: #26A69A;
  /* Vibrant Teal/Green for success/accents */
  --background: #F7F9FA;
  /* Cool Pearl White */
  --text-dark: #1A1A1A;
  /* Almost Black */
  --text-light: #F4F6F8;
  --white: #FFFFFF;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scroll that misplaces fixed elements */
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: 38px;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {

  margin-bottom: 20px;
  font-size: 1rem;
  color: #646363;

}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

/* Responsive text */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }
}

/* Destination specific styles */
.hero-banner {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/destinations_hero_1782747708244.png') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-banner h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  animation: fadeUp 1s ease-out forwards;
  color: #FFFFFF;
}

.hero-banner p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  animation: fadeUp 1s ease-out 0.2s forwards;
  opacity: 0;
  color: #c8c8c8;
}

.hero-banner .btn {
  animation: fadeUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

/* Intro Section */
.intro-section {
  padding: 5rem 0;
  text-align: center;
  background-color: var(--light-gray, #f9f9f9);
}

.intro-section h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.intro-section p {
  max-width: 900px;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* Destination List Customizations */
.dest-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.dest-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dest-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dest-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-card-img-wrapper img {
  transform: scale(1.05);
}

.dest-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary, #d32f2f);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

.dest-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dest-card-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

.dest-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.dest-highlights {
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style-type: none;
}

.dest-highlights li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.5rem;
}

.dest-highlights li::before {
  content: "•";
  color: var(--accent, #ff9800);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  top: -2px;
}

.dest-duration {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dest-card-footer {
  margin-top: auto;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*==================================
  EXpericence section
===================================*/

.experience-section {
  padding: 100px 8%;
  overflow: hidden;
  background: var(--background);
}

.experience-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/*========================
LEFT
========================*/

.experience-tag {

  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(38, 166, 154, .12);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2px;

}

.experience-content h2 {
  font-size: 52px;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 25px;
}

.experience-content h2 span {
  color: var(--secondary);
}

.experience-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 35px;
}

.experience-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: .4s;
}

.experience-btn:hover {
  background: var(--primary);
  transform: translateY(-5px);

}

/*========================
RIGHT
========================*/
.experience-gallery {

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;

}

.experience-card {
  position: relative;
  height: 240px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;

}

.experience-card:hover img {
  transform: scale(1.1);
}

.experience-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(transparent, rgba(15, 46, 74, .95));
  transform: translateY(100%);
  transition: .45s;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.experience-card:hover .experience-overlay,
.experience-card.active .experience-overlay {
  transform: translateY(0);
}

.experience-overlay h3 {
  color: #fff;
  font-size: 20px;

}

/*======================
ANIMATION
======================*/

.experience-fade {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s;

}

.experience-fade.experience-show {
  opacity: 1;
  transform: translateY(0);

}

/*======================
RESPONSIVE
======================*/

@media(max-width:576px) {

  .experience-journey {

    padding: 70px 20px;

  }

  .experience-container {

    grid-template-columns: 1fr;
    gap: 40px;

  }

  .experience-left {
    text-align: center;
  }

  .experience-left h2 {
    font-size: 34px;
  }

  .experience-left p {
    font-size: 15px;
  }

  .experience-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .experience-card {
    height: 170px;
  }

  .experience-overlay h3 {
    font-size: 16px;
  }

  .experience-btn {
    padding: 14px 24px;
  }
}

/*==================================
TESTIMONIAL SECTION
==================================*/

.testimonial-section {

  padding: 100px 8%;
  background: var(--background);

}

.testimonial-container {

  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;

}

/* LEFT */

.testimonial-tag {

  display: inline-block;
  padding: 8px 18px;
  background: rgba(38, 166, 154, .12);
  color: var(--accent);
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;

}

.testimonial-content h2 {

  font-size: 50px;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;

}

.testimonial-content h2 span {

  color: var(--secondary);

}

.testimonial-content p {

  font-size: 17px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 40px;

}

.testimonial-nav {

  display: flex;
  gap: 15px;

}

.testimonial-nav button {

  width: 55px;
  height: 55px;

  border: none;
  border-radius: 50%;

  background: var(--secondary);

  color: #fff;
  font-size: 20px;

  cursor: pointer;
  transition: .35s;

}

.testimonial-nav button:hover {

  background: var(--primary);
  transform: translateY(-5px);

}

/* RIGHT */

.testimonial-slider {

  position: relative;
  height: 350px;

}

.testimonial-card {

  position: absolute;

  width: 100%;
  height: 100%;

  background: #fff;

  padding: 40px;

  border-radius: 24px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

  opacity: 0;

  transform: translateX(80px);

  transition: .7s;

  pointer-events: none;

}

.testimonial-card.active {

  opacity: 1;

  transform: translateX(0);

  pointer-events: auto;

}

.testimonial-stars {

  font-size: 22px;
  color: #FFD54F;
  margin-bottom: 20px;

}

.testimonial-text {

  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;

}

.testimonial-user {

  display: flex;
  align-items: center;
  gap: 18px;

}

.testimonial-user img {

  width: 70px;
  height: 70px;

  border-radius: 50%;
  object-fit: cover;

}

.testimonial-user h4 {

  color: var(--primary);

}

.testimonial-user span {

  font-size: 14px;
  color: #777;

}

/* Scroll */

.testimonial-fade {

  opacity: 0;
  transform: translateY(60px);
  transition: 1s;

}

.testimonial-fade.testimonial-show {

  opacity: 1;
  transform: translateY(0);

}

/* Mobile */

@media(max-width:576px) {

  .testimonial-section {

    padding: 70px 20px;

  }

  .testimonial-container {

    grid-template-columns: 1fr;

    gap: 40px;

  }

  .testimonial-content {

    text-align: center;

  }

  .testimonial-content h2 {

    font-size: 34px;

  }

  .testimonial-nav {

    justify-content: center;

  }

  .testimonial-slider {

    height: 380px;

  }

  .testimonial-card {

    padding: 25px;

  }

  .testimonial-text {

    font-size: 15px;

  }

}

/* Footer Section*/
.footer-links {
  color: #ddd;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  color: #ddd;
  line-height: 1.7;
}

.footer-contact li i {
  color: var(--secondary);
  font-size: 18px;
  width: 22px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: #ddd;
  text-decoration: none;
  transition: .3s;
}

.footer-contact li a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
  transition: .35s ease;
  border: 1px solid rgba(255, 255, 255, .12);
}

.social-links a:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-6px) rotate(8deg);
  box-shadow: 0 12px 25px rgba(224, 93, 54, .35);
}

/*====================================
FOOTER MOBILE RESPONSIVE
=====================================*/

@media (max-width:576px) {

  .footer {
    padding: 60px 20px 25px;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  .footer-grid>div {
    width: 100%;
  }

  .footer h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  /* Social Icons */

  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }

  .social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  /* Quick Links */

  .footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a {
    display: inline-block;
    padding: 5px 0;
  }

  /* Contact */

  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-contact li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-contact li i {
    font-size: 22px;
    color: var(--secondary);
  }

  .footer-contact li span,
  .footer-contact li a {
    line-height: 1.7;
    word-break: break-word;
  }

  /* Contact Button */

  .footer .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 240px;
    margin: 20px auto 0;
  }

  /* Bottom */

  .footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 14px;
    line-height: 1.7;
  }

}



/*====================================
VALUES SECTION
====================================*/

.values-section {

  padding: 100px 8%;
  background: var(--background);
  overflow: hidden;

}

.values-wrapper {

  max-width: 1300px;
  margin: auto;

}

/* Heading */

.values-heading {

  max-width: 760px;
  margin: auto auto 70px;
  text-align: center;

}

.values-tag {

  display: inline-block;
  padding: 8px 18px;
  background: rgba(38, 166, 154, .12);
  color: var(--accent);
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 18px;

}

.values-heading h2 {

  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;

}

.values-heading h2 span {

  color: var(--secondary);

}

.values-heading p {

  font-size: 17px;
  line-height: 1.8;
  color: #666;

}

/* Grid */

.values-grid {

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

}

/* Card */

.values-card {

  background: var(--white);
  padding: 45px 35px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  text-align: center;
  transition: .45s;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);

}

.values-card.show {
  opacity: 1;
  transform: translateY(0);
}

.values-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: .4s;

}

.values-card:hover::before {
  transform: scaleX(1);
}

.values-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

/* Icon */

.values-icon {
  width: 85px;
  height: 85px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 93, 54, .12);
  color: var(--secondary);
  font-size: 34px;
  margin-bottom: 25px;
  transition: .45s;

}

.values-card:hover .values-icon {
  background: var(--secondary);
  color: #fff;
  transform: rotate(10deg) scale(1.1);

}

/* Text */

.values-card h3 {
  font-size: 25px;
  margin-bottom: 18px;
  color: var(--primary);

}

.values-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;

}

/*==============================
Responsive
==============================*/

@media(max-width:992px) {

  .values-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media(max-width:576px) {

  .values-section {

    padding: 70px 20px;

  }

  .values-heading {

    margin-bottom: 45px;

  }

  .values-heading h2 {

    font-size: 34px;

  }

  .values-heading p {

    font-size: 15px;

  }

  .values-grid {

    grid-template-columns: 1fr;
    gap: 20px;

  }

  .values-card {

    padding: 35px 25px;

  }

}


/*===========================================
        Destination-template Page 
===========================================*/

.timeline-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #faf7f2, #f2eadc);
  overflow-x: hidden;
}

.parsection-title {
  text-align: center;
  margin-bottom: 100px;
}

.parsection-title span {
  color: #b8863b;
  letter-spacing: 4px;
  font-weight: 600;
}

.parsection-title h1 {
  font-size: 48px;
  color: #222;
  margin: 15px 0;
}

.parsection-title p {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1400px;
  margin: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(#d7a347, #8c5d22);
  transform: translateX(-50%);
  border-radius: 20px;
}

/* Item */
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  gap: 40px;
  margin: 80px 0;
  opacity: 1;
  transform: translateY(80px);
  transition: all .10s ease;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Center */
.timeline-center {
  display: flex;
  justify-content: center;
  position: relative;
}

.timeline-center span {
  width: 26px;
  height: 26px;
  background: white;
  border: 5px solid #b8863b;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(184, 134, 59, .4);
}

/* Images */
.timeline-image {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.timeline-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: .6s;
}

.timeline-image:hover img {
  transform: scale(1.08);
}

/* Content */
.timeline-content {
  background: white;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  position: relative;
  overflow: hidden;
  transition: all .8s ease;

}

.timeline-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(#d7a347, #8c5d22);
}

.time {
  display: inline-block;
  background: #f8f1df;
  color: #8f6125;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.timeline-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #222;
}

.timeline-content p {
  color: #666;
  line-height: 1.9;
}

/* Alternate layout */
.timeline-item.reverse .timeline-image {
  order: 3;
}

.timeline-item.reverse .timeline-content {
  order: 1;
}

.timeline-item.reverse .timeline-center {
  order: 2;
}

/* Mobile */
@media(max-width:992px) {

  .timeline::before {
    left: 30px;
  }

  .timeline-item,
  .timeline-item.reverse {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 25px;
    margin: 60px 0;
  }

  .timeline-center {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline-image,
  .timeline-content {
    grid-column: 2;
    order: unset !important;
  }

  .timeline-image img {
    height: 250px;
  }

  .section-title h1 {
    font-size: 34px;
  }

  .timeline-content h3 {
    font-size: 24px;
  }
}


/*==================================================
  TIRU TRAVELS & MONEY EXCHANGE — ELEGANT REDESIGN
==================================================*/

/* ── Section wrapper ── */
.tiru-travels-section {
  position: relative;
  background: linear-gradient(145deg, #fdf8f2 0%, #f5ede0 50%, #fdf8f2 100%);
  padding: 100px 24px;
  overflow: hidden;
}

/* Decorative blurred orbs */
.tiru-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
}

.tiru-bg-orb--1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #E05D3640, transparent 70%);
  top: -140px;
  right: -100px;
}

.tiru-bg-orb--2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #26A69A30, transparent 70%);
  bottom: -100px;
  left: -80px;
}

/* ── Main two-column container ── */
.tiru-travels-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 72px;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   LEFT COLUMN – Image
══════════════════════════════ */
.tiru-image-col {
  flex: 1 1 420px;
  min-width: 300px;
  position: relative;
}

/* Floating ribbon above image */
.tiru-img-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.tiru-img-ribbon svg {
  opacity: 0.85;
  flex-shrink: 0;
}

/* Image frame with decorative border accent */
.tiru-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 46, 74, 0.18), 0 8px 24px rgba(15, 46, 74, 0.10);
}

.tiru-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 46, 74, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

.tiru-travels-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tiru-img-frame:hover .tiru-travels-img {
  transform: scale(1.03);
}

/* Stats / metrics row */
.tiru-metrics-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(224, 93, 54, 0.15);
  border-radius: 16px;
  padding: 18px 24px;
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(15, 46, 74, 0.07);
}

.tiru-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}

.tiru-metric-number {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.tiru-metric-number sup {
  font-size: 0.65rem;
  vertical-align: super;
  color: var(--secondary);
}

.tiru-metric-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: #888;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tiru-metric-sep {
  width: 1px;
  height: 36px;
  background: #e8ddd0;
  flex-shrink: 0;
}

/* ══════════════════════════════
   RIGHT COLUMN – Content
══════════════════════════════ */
.tiru-content-col {
  flex: 1 1 420px;
  min-width: 300px;
  padding-top: 8px;
}

/* Premium pill badge */
.tiru-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #fff8f0, #fdeee0);
  border: 1px solid rgba(224, 93, 54, 0.3);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 16px 6px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.tiru-pill-badge svg {
  flex-shrink: 0;
  stroke: var(--secondary);
  fill: var(--secondary);
}

/* Heading */
.tiru-heading {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.tiru-heading-accent {
  color: var(--secondary);
  display: block;
}

/* Subtitle row with flanking lines */
.tiru-subtitle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.tiru-subtitle-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(224, 93, 54, 0.4), transparent);
}

.tiru-tagline {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
  margin: 0;
  letter-spacing: 0.03em;
}

/* Description text */
.tiru-description {
  font-size: 0.94rem;
  color: #5c5752;
  line-height: 1.8;
  margin-bottom: 12px;
}

.tiru-brand-name {
  color: var(--secondary);
  font-weight: 600;
}

/* ══════════════════════════════
   SERVICES — horizontal rows
══════════════════════════════ */
.tiru-services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0 24px;
  border: 1px solid rgba(224, 93, 54, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(15, 46, 74, 0.05);
}

.tiru-service-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  transition: background 0.25s ease;
  border-bottom: 1px solid #f0e8df;
  cursor: default;
}

.tiru-service-row:last-child {
  border-bottom: none;
}

.tiru-service-row:hover {
  background: linear-gradient(90deg, #fff8f3, #fff);
}

/* Icon circle */
.tiru-service-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0F2E4A14, #0F2E4A08);
  border: 1px solid rgba(15, 46, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.tiru-service-row:hover .tiru-service-icon-wrap {
  background: linear-gradient(135deg, var(--primary), #1a4a70);
  border-color: transparent;
}

.tiru-service-icon-wrap svg {
  stroke: var(--primary);
  transition: stroke 0.25s ease;
}

.tiru-service-row:hover .tiru-service-icon-wrap svg {
  stroke: #fff;
}

.tiru-service-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tiru-service-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

.tiru-service-desc {
  font-size: 0.75rem;
  color: #999;
  font-weight: 400;
  line-height: 1.4;
}

/* ══════════════════════════════
   QUOTE BLOCK
══════════════════════════════ */
.tiru-quote {
  position: relative;
  background: linear-gradient(135deg, #fdf4ec, #fff9f5);
  border-left: 3px solid var(--secondary);
  border-radius: 0 12px 12px 0;
  padding: 14px 20px 14px 48px;
  margin: 0 0 28px;
  font-size: 0.87rem;
  font-style: italic;
  color: #6e6560;
  font-family: var(--font-heading);
  line-height: 1.6;
}

.tiru-quote-mark {
  position: absolute;
  left: 14px;
  top: 8px;
  font-size: 3rem;
  line-height: 1;
  color: var(--secondary);
  opacity: 0.3;
  font-family: Georgia, serif;
  font-style: normal;
}

/* ══════════════════════════════
   CTA BUTTONS
══════════════════════════════ */
.tiru-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.tiru-btn-whatsapp,
.tiru-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.tiru-btn-whatsapp::before,
.tiru-btn-call::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: inherit;
}

.tiru-btn-whatsapp:hover::before,
.tiru-btn-call:hover::before {
  opacity: 1;
}

.tiru-btn-whatsapp {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a70 100%);
  color: #fff;
  box-shadow: 0 6px 22px rgba(15, 46, 74, 0.28);
}

.tiru-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 46, 74, 0.38);
}

.tiru-btn-call {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  box-shadow: none;
}

.tiru-btn-call:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(15, 46, 74, 0.2);
}

.tiru-btn-call svg {
  stroke: currentColor;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .tiru-travels-container {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .tiru-travels-section {
    padding: 70px 20px;
  }

  .tiru-travels-container {
    flex-direction: column;
    gap: 40px;
  }

  .tiru-image-col,
  .tiru-content-col {
    flex: 1 1 100%;
    min-width: 0;
  }

  .tiru-heading {
    font-size: 2.1rem;
  }

  .tiru-metrics-row {
    padding: 14px 16px;
  }

  .tiru-metric-number {
    font-size: 1.3rem;
  }

  .tiru-tagline {
    white-space: normal;
    text-align: center;
  }

  .tiru-subtitle-row {
    flex-direction: column;
    gap: 6px;
  }

  .tiru-subtitle-line {
    width: 60px;
    height: 1px;
  }

  .tiru-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .tiru-btn-whatsapp,
  .tiru-btn-call {
    justify-content: center;
  }
}

.faq-container {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq-item {
      background: var(--white);
      border-radius: var(--border-radius);
      margin-bottom: 15px;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }
    .faq-question {
      padding: 20px 25px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--primary);
      transition: var(--transition);
    }
    .faq-question:hover {
      background-color: #fafafa;
    }
    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      transition: var(--transition);
    }
    .faq-item.active .faq-question::after {
      content: '-';
      transform: rotate(180deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      padding: 0 25px;
    }
    .faq-item.active .faq-answer {
      padding: 0 25px 20px;
    }


    /*  Gallery page */
    
    .masonry {
      column-count: 3;
      column-gap: 20px;
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 20px;
      border-radius: var(--border-radius);
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .gallery-item img {
      width: 100%;
      display: block;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(15, 46, 74, 0.8);
      /* Primary color overlay */
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    /* Lightbox */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .lightbox.active {
      opacity: 1;
      pointer-events: all;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90vh;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 40px;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .masonry {
        column-count: 2;
      }
    }

    @media (max-width: 480px) {
      .masonry {
        column-count: 1;
      }
    }

    /* Filter styles */
    .filter-menu {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
    }

    .filter-btn {
      padding: 8px 20px;
      border: 2px solid var(--primary);
      background: transparent;
      color: var(--primary);
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--primary);
      color: white;
    }

    .gallery-item.hide {
      display: none;
    }