/* =====================================================
   index.css — Maris Vlora Boat Tours
   Homepage-only styles. Loaded after shared.css.
   ===================================================== */

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}

.hero.is-loaded .hero-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 27, 42, 0.72) 0%,
    rgba(13, 27, 42, 0.45) 50%,
    rgba(13, 27, 42, 0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 20px;
}

.hero-title {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -2.5px;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--sunset);
}


.hero-sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.trust-sep {
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}



/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.hero-scroll span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ——— TRUST BAR ——— */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 160px;
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.trust-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 2px;
}

.trust-feature span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

/* ——— TOURS SECTION ——— */
.tours-section {
  padding: 96px 0;
  background: var(--cream);
}

/* 4 equal columns — no secondary grid needed */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Tour card base */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  border: 1.5px solid transparent;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.tour-card-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.tour-card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 400ms var(--ease);
  display: block;
}

.tour-card:hover .tour-card-img-wrap img {
  transform: scale(1.05);
}

/* Featured card: taller image */
.tour-card--featured .tour-card-img-wrap img {
  height: 340px;
}

.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1.4;
}

.tour-badge--hot {
  background: var(--orange);
  color: var(--white);
}

.tour-badge--sunset {
  background: var(--sunset);
  color: var(--navy);
}

.tour-badge-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(13,27,42,0.72);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.tour-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.tour-type-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal);
}

.tour-type-tag--sunset {
  color: var(--sunset-dark);
}

.tour-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.tour-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.tour-highlights {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  margin: 4px 0;
}

.tour-highlights li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-highlights li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  flex-shrink: 0;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.tour-card .btn-primary,
.tour-card .btn-secondary,
.tour-card .btn-sunset {
  font-size: 12px !important;
  padding: 8px 12px !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.tour-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.tour-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-shrink: 0;
}

.price-from {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
}

.price-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
}

.price-unit {
  font-size: 11px;
  color: var(--text-muted);
}

/* Sunset card accent border */
.tour-card--sunset {
  border-color: var(--sunset);
}

/* ——— DESTINATIONS ——— */
.destinations-section {
  padding: 96px 0;
  background: var(--white);
}

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

.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.dest-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.dest-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}

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

.dest-card-body {
  padding: 20px;
}

.dest-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.dest-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.dest-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.dest-learn-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--dur) var(--ease);
}

.dest-card:hover .dest-learn-more {
  letter-spacing: 0.3px;
}

/* ——— ABOUT SECTION ——— */
.about-section {
  padding: 96px 0;
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-text .section-tag {
  display: block;
  margin-bottom: 8px;
}

.about-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.about-list li svg {
  flex-shrink: 0;
  color: var(--green);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-star {
  font-size: 22px;
  color: var(--sunset);
}

.stat-plus {
  font-size: 26px;
  color: var(--orange);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.about-img-wrap {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 4px;
}

.about-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ——— tour summary ——— */

.blue-section {
  background: #155f91;
  padding: 4.5rem 0;
}

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

.section-kicker.light {
  color: #ffffff;
}

.light {
  color: #fff;
}

.light-sub {
  color: #ffffff;
}

.tour-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.tour-summary-card.light {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 18px;
  padding: 1.25rem;
  backdrop-filter: blur(6px);
}

.tour-summary-card h3,
.tour-summary-card p {
  color: #ffffff;
}

.tour-summary-card h3 {
  margin-bottom: 0.5rem;
}

.tour-summary-card p {
  margin: 0;
}

@media (max-width: 767px) {
  .tour-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— FAQ SECTION ——— */
.faq-section {
  padding: 96px 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-100);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}

.faq-q:hover {
  color: var(--orange);
}

.faq-q[aria-expanded="true"] {
  color: var(--orange);
}

.faq-chev {
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
  color: var(--gray-400);
}

.faq-q[aria-expanded="true"] .faq-chev {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-a {
  padding: 0 0 20px;
  animation: faq-open 200ms ease-out;
}

.faq-a p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ——— BLOG SECTION ——— */
.blog-section {
  padding: 96px 0;
  background: var(--cream);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img-link img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}

.blog-card:hover .blog-card-img-link img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.blog-card h3 a {
  color: inherit;
  transition: color var(--dur) var(--ease);
}

.blog-card h3 a:hover {
  color: var(--orange);
}

.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap var(--dur) var(--ease);
}

.blog-read-more:hover {
  gap: 8px;
}

/* Posts 4 & 5 — compact list below the cards */
.blog-list-more {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.blog-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--dur) var(--ease);
  text-decoration: none;
}

.blog-list-item:last-child {
  border-bottom: none;
}

.blog-list-item:hover {
  background: var(--cream);
}

.blog-list-item:hover .blog-list-arrow {
  transform: translateX(4px);
  color: var(--orange);
}

.blog-list-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.blog-list-meta h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.blog-list-meta p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 680px;
}

.blog-list-arrow {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease),
              color var(--dur) var(--ease);
}

.blog-archive-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.destinations-archive-cta {
  text-align: center;
  margin-top: 0;
  padding: 50px 0 1px;
}


/* ——— CTA BANNER ——— */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #FF7A40 100%);
  padding: 72px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  line-height: 1.15;
}

.cta-banner-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.65;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

.cta-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  transition: color var(--dur) var(--ease);
}

.cta-phone-link:hover {
  color: var(--white);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(38px, 9vw, 56px);
    letter-spacing: -1.5px;
  }
  .trust-bar-inner {
    justify-content: flex-start;
    gap: 16px;
  }
  .trust-feature {
    min-width: 140px;
  }
  .tours-section,
  .destinations-section,
  .about-section,
  .faq-section,
  .blog-section {
    padding: 64px 0;
  }
  .tours-grid {
    grid-template-columns: 1fr;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-banner-actions {
    align-items: flex-start;
  }
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-trust {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: calc(var(--nav-h) + 20px);
    padding-bottom: 60px;
  }
  .trust-bar-inner {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
  .stat-num {
    font-size: 28px;
  }
  .included-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}
