/* ===== GLOBAL ===== */
body{
  margin:0;
  font-family:'Inter',sans-serif;
}

/* ===== SECTION ===== */
.newsletter-section{
  position:relative;
  width:100%;
  min-height:520px;
  background:url('https://cruisesingoa.com/images/book-cruises-in-goa.webp')
  center center/cover no-repeat;
  display:flex;
  align-items:center;
  padding:70px 0;
}

/* overlay */
.newsletter-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
}

/* ===== CONTAINER ===== */
.newsletter-container{
  position:relative;
  z-index:2;
  width:90%;
  max-width:1400px;
  margin-left:auto;
  margin-right:5%;
  display:flex;
  justify-content:flex-end;
  gap:80px;
  color:#fff;
}

/* ===== LEFT (TEXT BLOCK SHIFTED RIGHT) ===== */
.newsletter-left{
  flex:1;
  max-width:650px;
  transform:translateX(80px); /* cinematic right shift */
}

.newsletter-small{
  font-weight:700;
  letter-spacing:1px;
  font-size:14px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.newsletter-left h1{
  font-size:56px;
  line-height:1.05;
  margin:0 0 20px;
  font-weight:800;
}

.newsletter-description{
  font-size:18px;
  line-height:1.7;
  max-width:520px;
}

/* ===== RIGHT SIDE ===== */
.newsletter-right{
  width:340px;
  font-size:18px;
  font-weight:500;
  line-height:1.8;
}

.newsletter-right p{
  margin:0 0 12px;
  font-size:18px;
}

.newsletter-right i{
  margin-right:8px;
  color:#7fcfff; /* LIGHT BLUE */
}

.newsletter-right a{
  color:#7fcfff;
  text-decoration:none;
  font-weight:700;
}

/* ===== ICONS ===== */
.newsletter-social{
  margin-top:20px;
  display:flex;
  gap:20px;
}

.newsletter-social a{
  color:#fff;
  font-size:24px;
  transition:0.3s;
}

.newsletter-social a:hover{
  color:#7fcfff;
  transform:translateY(-3px);
}

/* =========================
   CRUISE GRID SECTION
========================= */

.cruise-grid-section{
  background:transparent;
  padding:50px 20px;
}

.cruise-grid{
  max-width:850px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

/* CARD */
.cruise-card{
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(8px);
  border-radius:24px;
  padding:18px 14px 18px;
  text-align:center;
  box-shadow:0 6px 16px rgba(0,0,0,0.10);
  transition:all 0.3s ease;
}

.cruise-card:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 28px rgba(0,0,0,0.18);
}

/* IMAGE */
.cruise-card img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:12px;
}

/* TITLE */
.cruise-card h3{
  font-size:22px;
  font-weight:600;
  color:#222;
  line-height:1.35;
  margin:0;
}

/* ===== MOBILE ===== */
@media(max-width:900px){

  .newsletter-container{
    flex-direction:column;
    gap:40px;
    margin-right:auto;
  }

  .newsletter-left{
    transform:none;
    max-width:100%;
  }

  .newsletter-left h1{
    font-size:44px;
  }

  .newsletter-right{
    width:100%;
    font-size:22px;
  }
}

@media(max-width:768px){

  .cruise-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .cruise-card img{
    width:110px;
    height:110px;
  }

  .cruise-card h3{
    font-size:20px;
  }
}

@media(max-width:600px){

  .newsletter-section{
    padding:60px 20px;
  }

  .newsletter-left h1{
    font-size:36px;
  }

  .newsletter-description{
    font-size:16px;
  }

  .newsletter-social{
    gap:16px;
  }

  .newsletter-social a{
    font-size:22px;
  }
}
