/* ===============================
   ROUND CARDS – GOA CRUISES
   =============================== */

.round-cards {
  padding: 70px 0;
  background: #fff;
}

/* WIDTH + WHITE SPACE */
.round-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.round-cards-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.round-cards-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0b0b0b;
}

/* EXPLORE BUTTON */
.round-cards-btn {
  background: #ff5a5f;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.round-cards-btn:hover {
  background: #e6464b;
  color: #fff;
}
.round-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* GRID */
.round-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.round-card-overlay,
.round-card-badge {
    pointer-events: none;
}
/* CARD WRAPPER (clickable) */
.round-card-wrapper {
  cursor: pointer;
}

/* CARD IMAGE AREA */
.round-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 360px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.round-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GRADIENT OVERLAY */
.round-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0)
  );
}

/* BADGE */
.round-card-badge {
  position: absolute;
  bottom: 70px;
  left: 20px;
  background: #ff5a5f;
  color: #fff;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 2;
}

/* TITLE */
.round-card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.round-card-overlay h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

/* PRICE BELOW CARD */
.round-card-price {
  text-align: center;
  padding: 10px 0 4px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.round-card-price strong {
  color: #ff5a5f;
  font-weight: 700;
}

/* HOVER EFFECT */
.round-card-wrapper:hover .round-card {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .round-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .round-cards-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .round-cards-header h2 {
    font-size: 26px;
  }

  .round-cards-grid {
    grid-template-columns: 1fr;
  }

  .round-card {
    height: 280px;
  }
}

/* ==============================
   DINNER CRUISE CARD SECTION CSS
================================== */

/* SECTION BACKGROUND */
.dinner-card-section {
  background: #cfe3ea;
  padding: 40px 15px;
}

.sunset-card-section {
  background: #ffd18a;
  padding: 40px 15px;
}

/* MAIN CARD */
.dinner-card {
  max-width: 1100px;
  margin: 0 auto 30px;
  background: #fff;
  border-radius: 28px;
  display: flex;
  gap: 30px;
  padding: 30px;
}

/* IMAGE SIDE */
.dinner-card-image {
  flex: 1;
}

.dinner-card-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* CONTENT SIDE */
.dinner-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dinner-card-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #0b0b0b;
}

.dinner-card-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 14px;
}

.dinner-card-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 18px;
}

/* INFO POINTS */
.dinner-info {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.dinner-info li {
  font-size: 15px;
  color: #333;
  margin-bottom: 7px;
  padding-left: 18px;
  position: relative;
}

.dinner-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5a5f;
  font-size: 20px;
  line-height: 1;
}

.dinner-info strong {
  font-weight: 700;
  color: #111;
}

/* FOOTER */
.dinner-card-footer {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 5px;
}

/* PRICE */
.dinner-price {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

.dinner-price strong {
  color: #ff5a5f;
  font-weight: 800;
}

/* RED BUTTON */
.dinner-btn {
  background: #ff5a5f;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.dinner-btn:hover {
  background: #e6484d;
  transform: translateY(-2px);
}

/* ==============================
   MOBILE RESPONSIVE
================================== */
@media (max-width: 768px) {

  .dinner-card {
    flex-direction: column;
    padding: 20px;
    gap: 18px;
  }

  .dinner-card-image img {
    min-height: 240px;
    border-radius: 18px;
  }

  .dinner-card-content h2 {
    font-size: 26px;
  }

  .dinner-card-content p {
    font-size: 15px;
  }

  .dinner-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .dinner-btn {
    width: auto;
  }
}
.blink-recommended {
  color: #fc2a18;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  animation: blinkText 2s infinite ease-in-out;
}

@keyframes blinkText {
  0%   { opacity: 1; }
  50%  { opacity: 0.2; }
  100% { opacity: 1; }
}

/* ==============================
   BOOKING DRAWER STYLES
================================== */

/* Overlay */
.booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

/* Drawer */
.booking-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 92%;
  height: 100%;
  background: #fff;
  box-shadow: -6px 0 20px rgba(0,0,0,0.2);
  transition: all 0.35s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}

/* Active States */
.booking-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-drawer.active {
  right: 0;
}

/* Header */
.booking-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
}

.booking-logo {
  font-size: 18px;
  font-weight: 800;
  color: #ff5a5f;
}

.booking-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* Body */
.booking-drawer-body {
  padding: 18px;
  overflow-y: auto;
}

.booking-drawer-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 800;
  color: #111;
}

.booking-subtext {
  font-size: 14px;
  color: #666;
  margin-bottom: 14px;
}

/* Summary Box */
.booking-summary {
  background: #eaf6ff;
  border: 1px solid #cfe9ff;
  padding: 12px 12px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #222;
}

.booking-summary strong {
  color: #0b0b0b;
}

/* Form */
.booking-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 10px 0 6px;
  color: #222;
}

.booking-form input {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
}

.booking-form input:focus {
  border-color: #ff5a5f;
}

/* Submit Button */
.booking-submit {
  width: 100%;
  margin-top: 16px;
  background: linear-gradient(135deg,#ff5a5f,#ff7b54);
  border: none;
  color: #fff;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,90,95,0.3);
}
/* ==============================
   DINNER CRUISE HERO (MODERN)
================================== */

.dc-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}

/* Background Image */
.dc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.dc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

/* Dark Overlay */
.dc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.25) 100%
  );
}

/* Content */
.dc-hero-content {
  position: relative;
  z-index: 3;
  padding: 70px 15px 55px;
}

.dc-hero-text {
  max-width: 720px;
}

.dc-hero-text h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.15;
}

.dc-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 700;
}

.dc-stars {
  color: #ffd166;
  letter-spacing: 2px;
}

.dc-rated {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
}

/* Intro Text */
.dc-hero-text p {
  color: #f1f1f1;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
  opacity: 0.95;
}

/* Buttons */
.dc-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.dc-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 14px;
}

.dc-btn-primary {
  background: #ff5a5f;
  color: #fff;
}

.dc-btn-primary:hover {
  background: #e6484d;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255,90,95,0.35);
}

.dc-btn-outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.dc-btn-outline:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* Quick Pills */
.dc-quick-info {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dc-pill {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
/* Increase hero image height only on mobile */
@media (max-width: 768px) {
  .dc-hero {
    min-height: 800px;
    .dc-hero-content{
    padding-top: 80px;
  }
}


/* ==============================
   MOBILE RESPONSIVE
================================== */

@media (max-width: 768px) {
  .dc-hero {
    min-height: 420px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .dc-hero-content {
    padding: 55px 15px 45px;
  }

  .dc-hero-text h1 {
    font-size: 30px;
  }

  .dc-hero-text p {
    font-size: 15px;
  }

  .dc-marquee-track span {
    font-size: 13px;
  }
}
/* ==============================
   TERMS + MAP CARD (MINIMAL CSS)
================================== */

.dinner-terms-card {
  align-items: stretch;
}

/* Map Box (Right Side) */
.dinner-map-box {
  flex: 1;
  background: #f8fbff;
  border: 1px solid #e7eef7;
  border-radius: 20px;
  padding: 18px;
}

.dinner-map-box h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #111;
}

.dinner-map-box p {
  font-size: 14px;
  color: #555;
  margin: 0 0 12px;
}

/* Map Frame */
.dinner-map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e1e8f2;
  background: #fff;
}

.dinner-map-btn {
  display: inline-block;
  margin-top: 12px;
  background: #ff5a5f;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.dinner-map-btn:hover {
  background: #e6484d;
  transform: translateY(-2px);
}

/* Mobile stacking */
@media (max-width: 768px) {
  .dinner-map-box {
    padding: 14px;
  }

  .dinner-map-frame iframe {
    height: 220px;
  }
}
.dinner-terms-list li {
  font-size: 14px; /* reduced by 1 point */
}

/* SECTION */
/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
}

/* SECTION */
.newsletter-section{
    position:relative;
    width:100%;
    min-height:100vh;
    background:url('https://images.unsplash.com/photo-1470770841072-f978cf4d019e') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
}

/* DARK OVERLAY */
.newsletter-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.55)
    );
}

/* CONTENT WRAPPER */
.newsletter-container{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1200px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

/* LEFT SIDE */
.newsletter-left{
    max-width:600px;
}

.newsletter-small{
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.newsletter-left h1{
    font-size:48px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.newsletter-description{
    font-size:16px;
    line-height:1.7;
    opacity:0.9;
}

/* RIGHT SIDE */
.newsletter-right{
    max-width:350px;
}

.newsletter-right p{
    margin-bottom:15px;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:10px;
}

.newsletter-right i{
    color:#ffcc66;
}

.newsletter-right a{
    color:#ffcc66;
    text-decoration:none;
    font-weight:600;
}

.newsletter-right a:hover{
    text-decoration:underline;
}

/* SOCIAL ICONS */
.newsletter-social{
    margin-top:25px;
    display:flex;
    gap:18px;
}

.newsletter-social a{
    color:#ffffff;
    font-size:18px;
    transition:0.3s ease;
}

.newsletter-social a:hover{
    color:#ffcc66;
}

/* RESPONSIVE */
@media(max-width:992px){
    .newsletter-left h1{
        font-size:38px;
    }
}

@media(max-width:768px){
    .newsletter-container{
        flex-direction:column;
        align-items:flex-start;
        gap:40px;
    }

    .newsletter-left h1{
        font-size:32px;
    }

    .newsletter-section{
        padding:60px 0;
    }
}
.experience-icons {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.experience-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.experience-icons a:hover {
  background: #ffb39a;
  color: #000;
  transform: translateY(-4px);
}

