/* ============================================
   Intro Section — Lanka Tour Driver
   ============================================ */

/* --- Keyframes --- */
@keyframes introFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes introLineExpand {
  from { width: 0; }
  to   { width: 40px; }
}

/* --- Section --- */
.intro-section {
  background: #FDFAF5;
  padding: 80px 0;
  position: relative;
}

/* Bottom gradient separator */
.intro-section__separator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 139, 139, 0.15), transparent);
}

/* --- Container --- */
.intro-section__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 60px;
}

/* --- Text Column --- */
.intro-section__text {
  opacity: 0;
  animation: introFadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

/* Decorative teal line */
.intro-section__accent-line {
  display: block;
  height: 2.5px;
  background: linear-gradient(135deg, #008B8B, #20B2AA);
  border: none;
  border-radius: 2px;
  margin-bottom: 16px;
  width: 0;
  animation: introLineExpand 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

/* --- Heading --- */
.intro-section__heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #1A3A52;
  line-height: 1.25;
  margin: 0 0 20px;
}

.intro-section__heading-teal {
  color: #008B8B;
}

.intro-section__heading-teal em {
  font-style: italic;
}

/* --- Body --- */
.intro-section__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.85;
  color: #4A6A7A;
  margin: 0;
  opacity: 0;
  animation: introFadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.intro-section__body strong {
  color: #1A3A52;
  font-weight: 600;
}

/* --- Image Column --- */
.intro-section__image-wrap {
  opacity: 0;
  animation: introFadeInRight 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.intro-section__image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 3px solid #008B8B;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-section__image-card:hover {
  transform: scale(1.03);
}

.intro-section__image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

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

@media (max-width: 1100px) {
  .intro-section__container {
    padding: 0 40px;
    gap: 40px;
  }

  .intro-section__heading {
    font-size: 30px;
  }
}

@media (max-width: 900px) {
  .intro-section__container {
    grid-template-columns: 1fr;
    max-width: 650px;
    gap: 36px;
  }

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

  .intro-section__accent-line {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-section__image-card img {
    max-height: 300px;
  }
}

@media (max-width: 640px) {
  .intro-section {
    padding: 50px 0;
  }

  .intro-section__container {
    padding: 0 24px;
  }

  .intro-section__heading {
    font-size: 26px;
  }

  .intro-section__body {
    font-size: 13.5px;
  }
}
