/* === Updated Main Header Styles === */
.main-header {
  background: #0a4da3;
  border-radius: 20px;
  margin: 20px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  color: white;
  font-size: 22px;
  font-weight: bold;
}

.main-header nav {
  display: flex;
  gap: 20px;
}

.main-header nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.main-header nav a:hover,
.main-header nav a.active {
  color: #ffe082;
}

.book-btn {
  background: #ffe082;
  color: #0a4da3;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

/* GLOBAL RESET */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: 
    linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
    url('images/tubes.png') no-repeat center center fixed;
  background-size: cover;
  color: #333;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px;
}

/* HEADER (FIXED FOR MOBILE) */
.main-header {
  background: #0a4da3;
  border-radius: 16px;
  margin: 10px;
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.main-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.main-header nav a {
  font-size: 14px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 50px 15px;
}

.hero h2 {
  font-size: 28px;
}

/* BUTTON */
.main-button {
  display: inline-block;
  padding: 12px 20px;
  font-size: 14px;
}

/* PANEL GRID */
.panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 10px;
}

/* CARDS */
.card, .panel-card {
  width: 100%;
  margin: 0;
}

/* PRICING */
.pricing-container {
  flex-direction: column;
  align-items: center;
}

.price-card {
  width: 90%;
}

/* CONTACT */
.contact-card {
  flex-direction: column;
}

.contact-form-col,
.contact-info-col {
  width: 100%;
  padding: 20px;
}

/* TABLE (MAKE SCROLLABLE ON PHONE) */
.travel-table {
  display: block;
  overflow-x: auto;
}

/* FLOATING BUTTON */
.floating-book {
  bottom: 15px;
  right: 15px;
  padding: 12px 18px;
  font-size: 14px;
}

/* ===== MEDIA QUERIES ===== */

/* TABLET */
@media (min-width: 768px) {
  .panel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h2 {
    font-size: 34px;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .panel-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h2 {
    font-size: 38px;
  }

  .main-header nav a {
    font-size: 16px;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
}
body {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.main-logo {
  height: 64px;
  max-width: 260px;
  width: auto;
  margin-right: 32px;
  object-fit: contain;
  display: block;
}
/* --- Contact Page Styles --- */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 80vh;
  background: none;
  padding: 40px 0 60px 0;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(63,142,203,0.13);
  max-width: 900px;
  width: 100%;
  margin: 0 16px;
  overflow: hidden;
}

.contact-form-col {
  flex: 2 1 340px;
  padding: 40px 32px 32px 32px;
  min-width: 320px;
}

.contact-info-col {
  flex: 1 1 260px;
  background: #f7fafd;
  padding: 40px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
  border-left: 1px solid #e1eaf3;
}

.contact-info-box {
  text-align: center;
}

.contact-img {
  width: 90px;
  margin-bottom: 18px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(63,142,203,0.10);
}

.contact-form .form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}
.contact-form .form-group {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
}
.contact-form .form-group.full {
  flex-basis: 100%;
}
.contact-form label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #2a4d6c;
}
.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border: 1px solid #c3d3e6;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 2px;
  background: #fafdff;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3f8ecb;
  outline: none;
}
.contact-form textarea {
  min-height: 70px;
  resize: vertical;
}
.contact-form .form-actions {
  margin-top: 18px;
  display: flex;
  gap: 16px;
}
.contact-form .btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-form .btn.green {
  background: #2ecc71;
  color: #fff;
}
.contact-form .btn.green:hover {
  background: #27ae60;
}
.contact-form .btn.blue {
  background: #3f8ecb;
  color: #fff;
}
.contact-form .btn.blue:hover {
  background: #2a4d6c;
}
.page-title {
  margin-top: 0;
  color: #0a4da3;
  font-size: 2rem;
}
.page-subtitle {
  color: #555;
  margin-bottom: 24px;
}
@media (max-width: 800px) {
  .contact-card {
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(63,142,203,0.10);
  }
  .contact-info-col {
    border-left: none;
    border-top: 1px solid #e1eaf3;
    padding-top: 24px;
  }
}
/* Panel card styles */
.panel-card{
  background:white;
  border-radius:10px;
  padding:25px;
  margin:20px;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  max-width:500px;
}

.panel-card h2{
  color:#2b6cb0;
}

.description{
  color:#555;
}

.price{
  font-size:22px;
  font-weight:bold;
  margin-top:10px;
}

.order-btn{
  display:inline-block;
  margin-top:15px;
  background:#2b6cb0;
  color:white;
  padding:10px 18px;
  text-decoration:none;
  border-radius:6px;
}
/* Blue menu ribbon styles for all pages */
.main-header {
  background: #0a4da3;
  border-radius: 24px;
  margin: 24px auto 0 auto;
  max-width: 1200px;
  box-shadow: 0 4px 24px rgba(60,120,200,0.07);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  }
  .main-header .brand {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 1.5px;
  }
  .main-header nav {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  .main-header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    padding: 16px 0;
    transition: color 0.2s;
  }
  .main-header nav a.active, .main-header nav a:hover {
    color: #ffe082;
  }
  .main-header .book-btn {
    background: #ffe082;
    color: #0a4da3;
    border: none;
    border-radius: 28px;
    padding: 18px 38px;
    font-weight: bold;
    font-size: 1.18rem;
    cursor: pointer;
    margin-left: 32px;
    box-shadow: 0 2px 8px rgba(63,142,203,0.08);
  }
/* Pricing Section Styles */

.pricing-section{
  padding:60px 20px;
  background:#f7f9fc;
  text-align:center;
}

.pricing-section h1{
  color:#0a4da3;
  margin-bottom:10px;
}

.pricing-note{
  color:#555;
  margin-bottom:40px;
}

.pricing-container{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.price-card{
  background:white;
  padding:30px;
  border-radius:10px;
  width:320px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.price-card h2{
  color:#0a4da3;
}

.price{
  font-size:40px;
  font-weight:bold;
  color:#c62828;
}

.price span{
  font-size:16px;
}

.travel-table{
  width:100%;
  border-collapse:collapse;
  margin-top:20px;
}

.travel-table th{
  background:#0a4da3;
  color:white;
  padding:10px;
}

.travel-table td{
  padding:10px;
  border-bottom:1px solid #ddd;
}
.panel-details {
  margin-top: 14px;
  padding: 14px 18px;
  background: #f7fafd;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(63,142,203,0.06);
  color: #234;
  font-size: 1.01rem;
  text-align: left;
}

.panel-grid .card {
  margin-bottom: 10px;
}

.panel-grid .card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #3f8ecb;
}

.panel-grid .card p.price {
  font-size: 1.15rem;
  font-weight: bold;
  color: #2a4d6c;
  margin-bottom: 10px;
}

.panel-grid .card .button {
  margin-right: 8px;
  margin-bottom: 8px;
}
body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
  background: 
    linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
    url('images/tubes.png') no-repeat center center fixed;
  background-size: cover;
  color: #333;
}
/* Optional: If you want the overlay to be less strong, reduce the alpha value (e.g., 0.5 instead of 0.7) */

header{
background:#3f8ecb;
color:white;
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:bold;
}

.hero{
text-align:center;
padding:80px 20px;
background:#e9f3fb;
}

.hero h2{
font-size:38px;
}

.main-button{
background:#3f8ecb;
color:white;
padding:15px 30px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.wave-divider svg{
display:block;
width:100%;
height:80px;
}

.panels{
text-align:center;
padding:60px 20px;
}

.panel-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1000px;
margin:auto;
}

.card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.icon{
font-size:40px;
margin-bottom:15px;
}

.button{
background:#3f8ecb;
color:white;
border:none;
padding:12px 20px;
border-radius:6px;
cursor:pointer;
}

.floating-book{
position:fixed;
bottom:25px;
right:25px;
background:#3f8ecb;
color:white;
padding:15px 22px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
box-shadow:0 6px 15px rgba(0,0,0,0.2);
}

footer{
text-align:center;
padding:30px;
background:#e1eaf3;
margin-top:40px;
}

.pay-button {
  background: linear-gradient(90deg, #3f8ecb 60%, #2a4d6c 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  margin: 24px auto 0 auto;
  display: block;
  box-shadow: 0 2px 8px rgba(63,142,203,0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pay-button:hover, .pay-button:focus {
  background: linear-gradient(90deg, #2a4d6c 60%, #3f8ecb 100%);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
