/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f0f4fa;
  color: #0d141a;
  line-height: 1.5;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== STATUS BAR ===== */
.status-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  font-size: 0.8rem;
  color: #4a5a6e;
  padding: 6px 0;
  border-bottom: 1px solid #eef2f6;
  background: white;
}
.status-bar span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== HEADER / NAV ===== */
.navbar {
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.3px;
  color: #1D3557;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #1D3557;
  font-weight: 500;
  font-size: 15px;
  transition: 0.2s;
}
.nav-links a:hover {
  color: #457B9D;
}
.nav-links a.active {
  color: #457B9D;
  border-bottom: 2px solid #457B9D;
  padding-bottom: 4px;
}

/* ===== HERO ===== */
.hero {
  background: url('../images/cruise-ship-1.jpg') no-repeat center center / cover, linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
  /* Baaki ka same rakho */
  color: white;
  padding: 50px 0 40px;
  text-align: center;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 58, 118, 0.5); /* Navy overlay for readability */
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
/* Baaki ka .hero h1, .hero p, .hero .btn waisa hi rahega */


.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 10px;
}
.hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 550px;
  margin: 10px auto 28px;
  line-height: 1.6;
}
.hero .btn {
  display: inline-block;
  padding: 14px 50px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background: transparent;
  color: white;
  border: 2px solid white;
  transition: 0.25s;
  cursor: pointer;
  margin-bottom: 40px;
}
.hero .btn:hover {
  background: white;
  color: #1D3557;
}

/* ===== TRANSPARENT SQUARE CARDS ===== */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}
.card-item {
  flex: 1 1 220px;
  max-width: 280px;
  min-height: 200px;
  background: transparent;
  border-radius: 0px;
  padding: 24px 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.3s ease;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.5);
}
.card-item h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.card-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* ===== ABOUT ===== */
.about-section {
  background: white;
  padding: 60px 0;
  color: #1D3557;
}
.about-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about-content {
  flex: 1 1 400px;
}
.about-content .label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 6px;
}
.about-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.about-content p {
  font-size: 1.05rem;
  opacity: 0.8;
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 24px;
  color: #3d4e62;
}
.about-content .btn-outline-dark {
  display: inline-block;
  padding: 12px 44px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background: transparent;
  color: #1D3557;
  border: 2px solid #1D3557;
  transition: 0.25s;
  cursor: pointer;
}
.about-content .btn-outline-dark:hover {
  background: #1D3557;
  color: white;
}
.about-images {
  flex: 1 1 400px;
  display: flex;
  gap: 16px;
}
.about-images .img-wrap {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #d9e2ec;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.about-images .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
}

/* ===== SERVICES ===== */
.services-section {
  background: #1D3557;
  padding: 60px 0 50px;
  color: white;
}
.services-section .top {
  text-align: center;
  margin-bottom: 40px;
}
.services-section .top .label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
}
.services-section .top h2 {
  font-size: 2.2rem;
  font-weight: 700;
}
.services-section .top p {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 6px auto 0;
  line-height: 1.6;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.service-item {
  flex: 1 1 240px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0px;
  padding: 0px 0px 20px 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.25s;
  text-align: center;
  overflow: hidden;
}
.service-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}
.service-item .service-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 30px 30px 0px 0px;
}
.service-item .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-item h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
  padding: 0 16px;
}
.service-item p {
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.5;
  padding: 0 16px;
}

/* ===== ADVENTURES ===== */
.adventures-section {
  background: white;
  padding: 60px 0;
  color: #1D3557;
}
.adventures-section .top {
  text-align: center;
  margin-bottom: 40px;
}
.adventures-section .top .label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
}
.adventures-section .top h2 {
  font-size: 2.2rem;
  font-weight: 700;
}
.adventures-section .top p {
  font-size: 1.05rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 6px auto 0;
  line-height: 1.6;
  color: #3d4e62;
}
.adventures-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.adventure-item {
  flex: 1 1 200px;
  max-width: 280px;
  border-radius: 0px;
  overflow: hidden;
  transition: 0.3s ease;
}
.adventure-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.adventure-item .adventure-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.adventure-item .adventure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}
.adventure-item:hover .adventure-image img {
  transform: scale(1.04);
}
.adventure-item .adventure-info {
  padding: 16px 12px 12px;
  background: white;
}
.adventure-item .adventure-info h4 {
  font-weight: 600;
  font-size: 1rem;
  color: #1D3557;
}

/* ===== TESTIMONIALS ===== */
.review-section {
  background: #1D3557;
  padding: 60px 0;
  color: white;
  text-align: center;
  overflow: hidden;
}
.review-section .review-wrapper {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.review-section .review-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}
.review-section .review-slide {
  min-width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.review-section .review-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.review-section .review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-section .stars {
  font-size: 2.5rem;
  letter-spacing: 10px;
  color: #f4b942;
  margin-bottom: 12px;
}
.review-section blockquote {
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 14px;
  line-height: 1.7;
  opacity: 0.9;
}
.review-section .author {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}
.review-section .dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.review-section .dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}
.review-section .dots .dot.active {
  background: #f4b942;
}
.review-section .dots .dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
  color: white;
  padding: 60px 0 50px;
  text-align: center;
}
.page-hero .label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 6px;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== DESTINATIONS ===== */
.destinations-section {
  padding: 60px 0;
  background: white;
}
.destinations-section .top {
  text-align: center;
  margin-bottom: 40px;
}
.destinations-section .top .label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
  color: #1D3557;
}
.destinations-section .top h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1D3557;
}
.destinations-section .top p {
  font-size: 1.05rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 6px auto 0;
  color: #3d4e62;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.destination-card {
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 0px;
  overflow: hidden;
  transition: 0.3s ease;
}
.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #457B9D;
}
.destination-card .dest-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.destination-card .dest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}
.destination-card:hover .dest-image img {
  transform: scale(1.04);
}
.destination-card .dest-info {
  padding: 20px 18px 24px;
}
.destination-card .dest-info .region {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #457B9D;
  margin-bottom: 4px;
}
.destination-card .dest-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1D3557;
  margin-bottom: 6px;
}
.destination-card .dest-info p {
  font-size: 0.9rem;
  color: #3d4e62;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 12px;
}
.destination-card .dest-info .btn-outline-small {
  display: inline-block;
  padding: 8px 24px;
  border: 2px solid #1D3557;
  color: #1D3557;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: 0.25s;
  cursor: pointer;
  background: transparent;
}
.destination-card .dest-info .btn-outline-small:hover {
  background: #1D3557;
  color: white;
}

/* ===== FEATURED ===== */
.featured-dest,
.featured-service {
  background: #1D3557;
  color: white;
  padding: 60px 0;
}
.featured-dest .container,
.featured-service .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.featured-dest .featured-image,
.featured-service .featured-image {
  flex: 1 1 400px;
  border-radius: 0px;
  overflow: hidden;
  min-height: 250px;
  background: #2a4a6a;
}
.featured-dest .featured-image img,
.featured-service .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-dest .featured-content,
.featured-service .featured-content {
  flex: 1 1 400px;
}
.featured-dest .featured-content .label,
.featured-service .featured-content .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
}
.featured-dest .featured-content h2,
.featured-service .featured-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.featured-dest .featured-content p,
.featured-service .featured-content p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 18px;
}
.featured-dest .featured-content .btn-outline-white,
.featured-service .featured-content .btn-outline-white {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.25s;
  cursor: pointer;
  background: transparent;
}
.featured-dest .featured-content .btn-outline-white:hover,
.featured-service .featured-content .btn-outline-white:hover {
  background: white;
  color: #1D3557;
}

/* ===== SERVICES PAGE ===== */
.services-page-section {
  padding: 60px 0;
  background: white;
}
.services-page-section .top {
  text-align: center;
  margin-bottom: 40px;
}
.services-page-section .top .label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
  color: #1D3557;
}
.services-page-section .top h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1D3557;
}
.services-page-section .top p {
  font-size: 1.05rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 6px auto 0;
  color: #3d4e62;
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-page-card {
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 0px;
  overflow: hidden;
  transition: 0.3s ease;
}
.service-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #457B9D;
}
.service-page-card .service-icon {
  font-size: 3rem;
  padding: 24px 24px 0;
  text-align: center;
}
.service-page-card .service-info {
  padding: 16px 24px 28px;
  text-align: center;
}
.service-page-card .service-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1D3557;
  margin-bottom: 8px;
}
.service-page-card .service-info p {
  font-size: 0.9rem;
  color: #3d4e62;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 14px;
}
.service-page-card .service-info .btn-outline-small {
  display: inline-block;
  padding: 8px 28px;
  border: 2px solid #1D3557;
  color: #1D3557;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: 0.25s;
  cursor: pointer;
  background: transparent;
}
.service-page-card .service-info .btn-outline-small:hover {
  background: #1D3557;
  color: white;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: 60px 0;
  background: #f8fafc;
}
.why-choose .top {
  text-align: center;
  margin-bottom: 40px;
}
.why-choose .top .label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
  color: #1D3557;
}
.why-choose .top h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1D3557;
}
.why-choose .top p {
  font-size: 1.05rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 6px auto 0;
  color: #3d4e62;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.why-item {
  text-align: center;
  padding: 20px;
  background: white;
  border: 1px solid #eef2f6;
  transition: 0.3s;
}
.why-item:hover {
  border-color: #457B9D;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.why-item .why-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.why-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1D3557;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 0.9rem;
  color: #3d4e62;
  opacity: 0.8;
  line-height: 1.5;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 60px 0;
  background: white;
}
.contact-section .top {
  text-align: center;
  margin-bottom: 40px;
}
.contact-section .top .label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
  color: #1D3557;
}
.contact-section .top h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1D3557;
}
.contact-section .top p {
  font-size: 1.05rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 6px auto 0;
  color: #3d4e62;
}
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-form {
  flex: 2 1 400px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: #1D3557;
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dce1e8;
  border-radius: 0px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: 0.3s;
  outline: none;
  background: #f8fafc;
  margin-bottom: 18px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #457B9D;
  background: white;
  box-shadow: 0 0 0 3px rgba(69, 123, 157, 0.1);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form .btn-submit-form {
  padding: 14px 48px;
  border: none;
  background: #1D3557;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0px;
}
.contact-form .btn-submit-form:hover {
  background: #457B9D;
}
.contact-info {
  flex: 1 1 300px;
  padding: 30px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
}
.contact-info .info-item {
  margin-bottom: 28px;
}
.contact-info .info-item:last-child {
  margin-bottom: 0;
}
.contact-info .info-item .icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.contact-info .info-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1D3557;
  margin-bottom: 4px;
}
.contact-info .info-item p,
.contact-info .info-item a {
  font-size: 0.9rem;
  color: #3d4e62;
  text-decoration: none;
  line-height: 1.6;
}
.contact-info .info-item a:hover {
  color: #457B9D;
}
.map-section {
  padding: 0 0 60px 0;
  background: white;
}
.map-section .container {
  border-top: 1px solid #eef2f6;
  padding-top: 40px;
}
.map-container {
  width: 100%;
}
.map-container iframe {
  width: 100%;
  height: 350px;
  border: 1px solid #eef2f6;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f2a44;
  color: rgba(255, 255, 255, 0.8);
  padding: 50px 0 30px;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.footer-col {
  flex: 1 1 180px;
}
.footer-col h5 {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.7;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.9rem;
  transition: 0.2s;
}
.footer-col a:hover {
  color: white;
}
.footer-col .phone {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}
.footer-col p {
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.6;
  margin-bottom: 6px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}
.footer-social a:hover {
  background: #457B9D;
  color: white;
  transform: translateY(-2px);
}
.footer-form input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: 0.3s;
  outline: none;
}
.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-form input:focus {
  border-color: #457B9D;
  background: rgba(255, 255, 255, 0.08);
}
.footer-form .btn-submit {
  width: 100%;
  padding: 11px;
  border-radius: 6px;
  border: none;
  background: #457B9D;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.3s;
}
.footer-form .btn-submit:hover {
  background: #5a8fb3;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
  .navbar .container {
    flex-direction: column;
    align-items: center;
  }
  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
  }
  .card-item {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 120px;
  }
  .about-section .container {
    flex-direction: column;
    text-align: center;
  }
  .about-content p {
    max-width: 100%;
  }
  .about-images {
    flex-direction: column;
  }
  .about-images .img-wrap img {
    min-height: 180px;
  }
  .service-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .service-item .service-image {
    height: 220px;
    border-radius: 20px 20px 0px 0px;
  }
  .adventure-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .adventure-item .adventure-image {
    height: 220px;
  }
  .review-section blockquote {
    font-size: 1rem;
    padding: 0 10px;
  }
  .review-section .stars {
    font-size: 2rem;
    letter-spacing: 6px;
  }
  .review-section .review-image {
    width: 60px;
    height: 60px;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .services-page-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-dest .container,
  .featured-service .container {
    flex-direction: column;
    text-align: center;
  }
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-info {
    padding: 24px;
  }
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}