/* ========================================
   TransMobil Travel - Main Stylesheet
   ======================================== */

:root {
  /* Modern beach palette */
  --sea: #006494;
  --sky: #00b4d8;
  --palm: #52b788;
  --sun: #ffd60a;
  --coral: #f9844a;
  --violet: #7209b7;
  --dark: #14213d;
  --light: #fafafa;
  --sand: #f6ead7;
  --accent: var(--sun);
  --card-bg: #ffffff;
  --glass: rgba(255, 255, 255, 0.66);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  color: var(--dark);
  background: linear-gradient(180deg, var(--sky), #ffffff 60%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  box-shadow: 0 8px 30px rgba(10, 24, 40, 0.08);
  backdrop-filter: blur(6px);
  min-height: 60px;
  transition: all 0.3s ease;
}

header.scrolled {
  top: 5px;
  padding: 8px 16px;
  box-shadow: 0 5px 20px rgba(10, 24, 40, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: 100px;
  border-radius: 8px;
  object-fit: cover;
}

.brand {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.logo-sub {
  font-size: 10px;
  color: #356f81;
  line-height: 1.2;
}

/* ===== Navigation ===== */
nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 10px;
  transition: 0.25s;
  font-size: 0.9rem;
}

nav a:hover,
nav a.active {
  background: var(--sea);
  color: #fff;
  transform: translateY(-2px);
}

.cta {
  background: var(--accent);
  color: #04303a;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(11, 127, 168, 0.12);
  white-space: nowrap;
}

/* ===== Mobile Menu Toggle ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  font-size: 0.95rem;
  min-width: 140px;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--sea), #2aa1d6);
  color: #fff;
  box-shadow: 0 10px 30px rgba(11, 127, 168, 0.15);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--sea);
  color: var(--sea);
}

.btn:hover {
  transform: translateY(-6px);
}

/* ===== Form Inputs & Selects - Hover Border Effect ===== */
.form-group input,
.form-group select,
.form-group textarea,
input:not([type="submit"]):not([type="button"]),
select,
textarea {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover,
input:not([type="submit"]):not([type="button"]):hover,
select:hover,
textarea:hover {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(0, 100, 148, 0.1);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
input:not([type="submit"]):not([type="button"]):focus,
select:focus,
textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 4px rgba(0, 100, 148, 0.15);
  background: white;
  outline: none;
}

input[type="date"] {
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

input[type="date"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}

/* Book Now Button Style - No border, shows on hover only */
.hotel-card .btn-primary,
.tour-card .btn-primary,
.card .btn-primary {
  background: var(--sea);
  color: white;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  min-width: 120px;
  padding: 10px 18px;
}

.hotel-card .btn-primary:hover,
.tour-card .btn-primary:hover,
.card .btn-primary:hover {
  background: transparent;
  color: var(--sea);
  border: 2px solid var(--sea);
  transform: translateY(-3px);
}

/* ===== Page Header ===== */
.page-header {
  min-height: 50vh;
  margin-top: 80px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  box-shadow: 0 20px 50px rgba(11, 44, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.page-header .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-header .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 127, 168, 0.18), rgba(241, 230, 214, 0.08));
  mix-blend-mode: screen;
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 1200px;
  width: 100%;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 15px;
  line-height: 1.2;
  text-shadow: 0 10px 30px rgba(5, 20, 30, 0.4);
}

.page-header p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin: 0 0 20px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  margin-top: 80px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  box-shadow: 0 20px 50px rgba(11, 44, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero .bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(11, 127, 168, 0.28), rgba(0, 0, 0, 0.25)), url("images/2.jpg");
  background-size: cover;
  background-position: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 127, 168, 0.18), rgba(241, 230, 214, 0.08));
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 1200px;
  text-align: center;
  width: 100%;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  margin: 0 0 15px;
  line-height: 1.2;
  text-shadow: 0 10px 30px rgba(5, 20, 30, 0.4);
}

.hero p {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  margin: 0 0 20px;
  opacity: 0.95;
}

/* ===== Search Forms ===== */
.hotel-search,
.tour-search {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 25px;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.search-title {
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 700;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 0.9rem;
}

.search-btn {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, var(--sea), #2aa1d6);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
}

.search-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== Hero Cards ===== */
.hero-cards {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hcard {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(10, 24, 40, 0.06);
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(10, 24, 40, 0.12);
}

.hcard-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.hcard-icon i {
  font-size: 1.2rem;
  color: white;
}

/* ===== Main Content ===== */
main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

section {
  margin-bottom: 50px;
  padding: 0 5px;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-title h2 {
  font-size: 1.6rem;
  margin: 0;
  position: relative;
  padding-bottom: 8px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--sea), var(--accent));
  border-radius: 2px;
}

.section-sub {
  color: #356f81;
  opacity: 0.9;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== Cards (Hotels & Tours) ===== */
.hotels-container,
.tours-container,
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.hotel-card,
.tour-card,
.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.hotel-card:hover,
.tour-card:hover,
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hotel-image,
.tour-image,
.card .thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.hotel-image img,
.tour-image img,
.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-image img,
.tour-card:hover .tour-image img,
.card:hover .thumb img {
  transform: scale(1.05);
}

.hotel-rating,
.tour-rating {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--dark);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hotel-badge,
.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--coral);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.7rem;
}

.hotel-info,
.tour-info,
.card .body {
  padding: 20px;
}

.hotel-info h3,
.tour-info h3,
.card .body h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hotel-location,
.tour-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.hotel-features,
.tour-features,
.tour-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.hotel-feature,
.tour-feature,
.tour-detail {
  background: #f5f5f5;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hotel-price,
.tour-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.price-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sea);
}

.price-period {
  font-size: 0.8rem;
  color: #666;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin-right: 5px;
}

/* ===== About Section ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
}

.about .img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(11, 44, 60, 0.07);
  position: relative;
}

.about .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about .img:hover img {
  transform: scale(1.05);
}

.pill {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* ===== Filters ===== */
.filters {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-title {
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.filter-group label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.filter-group select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
  transition: all 0.3s ease;
}

.filter-group select:hover {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(0, 100, 148, 0.1);
}

.filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.pagination button {
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination button.active {
  background: var(--sea);
  color: white;
  border-color: var(--sea);
}

/* ===== Offers Banner ===== */
.offers-banner {
  background: linear-gradient(90deg, var(--coral), var(--violet));
  color: white;
  padding: 15px;
  border-radius: var(--radius);
  text-align: center;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.offers-banner h3 {
  margin: 0;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

/* ===== Services/Features ===== */
.features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.feature {
  flex: 1;
  min-width: 250px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75));
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(11, 44, 60, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(11, 44, 60, 0.1);
}

.feature i {
  font-size: 2rem;
  color: var(--sea);
  margin-bottom: 12px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(11, 127, 168, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* ===== Testimonials ===== */
.testimonials-card {
  background: linear-gradient(180deg, #fff, #fbfaf8);
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(11, 44, 60, 0.06);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 12px;
  color: #234;
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.6;
}

.author {
  font-weight: 700;
  color: var(--sea);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.author:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--sea);
  margin-right: 8px;
}

/* ===== Contact Grid ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info,
.contact-form,
.booking-form-container,
.google-reviews,
.rating-summary,
.add-review,
.faq-section {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 100, 148, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--sea);
}

/* ===== Booking Form ===== */
.booking-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.step.active .step-number,
.step.completed .step-number {
  background: var(--sea);
  color: white;
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.form-section-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group.required label:after {
  content: ' *';
  color: #e74c3c;
}

.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.service-option {
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.service-option.selected {
  border-color: var(--sea);
  background: rgba(0, 100, 148, 0.05);
}

.price-summary {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.price-total {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--sea);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 2px solid #ddd;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 15px 20px;
  background: #f9f9f9;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 15px 20px;
  max-height: 200px;
}

/* ===== Trust Indicators ===== */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.trust-item {
  text-align: center;
  padding: 20px;
}

.trust-icon {
  font-size: 2.5rem;
  color: var(--sea);
  margin-bottom: 15px;
}

/* ===== Map ===== */
.map-section,
.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ===== Emergency Contact ===== */
.emergency-contact {
  background: linear-gradient(90deg, var(--coral), var(--violet));
  color: white;
  border-radius: var(--radius);
  padding: 25px;
  margin-top: 40px;
  text-align: center;
}

.emergency-number {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 10px 0;
}

/* ===== Loading Animation ===== */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--sea);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--violet);
  transform: translateY(-3px);
}

/* ===== WhatsApp Button ===== */
#whatsapp-button {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  font-size: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

#whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* ===== Footer ===== */
footer {
  padding: 25px 15px;
  background: linear-gradient(90deg, var(--sea), #2aa1d6);
  color: #fff;
  border-radius: 12px;
  margin: 0 10px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-links {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-copyright {
  min-width: 160px;
  text-align: left;
  font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .page-header,
  .hero {
    margin-top: 70px;
  }

  .search-form {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 15px;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 15px;
    border-radius: 14px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    display: flex;
  }

  nav a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero,
  .page-header {
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 70px;
    border-radius: 16px;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .hotels-container,
  .tours-container,
  .cards {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    flex-direction: column;
    align-items: center;
  }

  .hcard {
    max-width: 100%;
    width: 100%;
  }

  .features {
    flex-direction: column;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
  }
}

@media (max-width: 480px) {
  header {
    left: 5px;
    right: 5px;
    top: 5px;
  }

  .hero,
  .page-header {
    margin-left: 5px;
    margin-right: 5px;
  }

  footer {
    margin-left: 5px;
    margin-right: 5px;
  }

  .hero h1,
  .page-header h1 {
    font-size: 1.8rem;
  }

  main {
    padding: 0 10px;
  }

  .booking-form-container,
  .contact-info,
  .contact-form,
  .google-reviews,
  .rating-summary,
  .add-review,
  .faq-section {
    padding: 20px;
  }

  .review-card {
    padding: 20px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
  }

  #whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}