/* =================== RESET =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* =================== NAVBAR =================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #1B3A57;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo a {
    font-family: 'Pacifico', cursive;
    font-size: 32px;
    color: #F1C40F;
    text-decoration: none;
    letter-spacing: 1px;
}
.logo a:hover { color: #1ABC9C; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 25px; }
.nav-links li a {
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.nav-links li a:hover { color: #F1C40F; }
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    border-radius: 3px;
}

/* =================== HERO VIDEO =================== */
.hero-video {
    position: relative;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-video-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero-video-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}
.hero-video-content .btn {
    padding: 12px 30px;
    background-color: #F1C40F;
    color: #1B3A57;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}
.hero-video-content .btn:hover {
    background-color: #1ABC9C;
    color: white;
}

/* =================== GUIDED FEATURE CARDS =================== */
.guided-cards {
    padding: 80px 50px;
    background-color: #F5F5F5;
    text-align: center;
}
.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.feature-card img { width: 80px; margin-bottom: 15px; }
.feature-card h3 { color: #1ABC9C; margin-bottom: 10px; }

/* =================== TOP DESTINATIONS =================== */
.top-destinations {
    padding: 80px 50px;
    background-color: #F5F5F5;
    text-align: center;
}
.destination-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.destination-card {
    width: 280px;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.destination-card h3 { padding: 15px 0; color: #1ABC9C; }

/* =================== OFFERS & DEALS =================== */
.offers-deals {
    padding: 80px 50px;
    text-align: center;
}
.offers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.offer-card {
    width: 280px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.offer-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.offer-card h3 { color: #1ABC9C; margin: 10px 0; }
.offer-card p { font-size: 14px; padding: 0 10px 15px; }

/* =================== TESTIMONIALS =================== */
.testimonials {
    padding: 80px 50px;
    background-color: #F5F5F5;
    text-align: center;
}
.testimonials h2 { font-size: 36px; color: #1B3A57; margin-bottom: 50px; }
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}
.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.testimonial-card h3 { color: #1ABC9C; margin-bottom: 10px; }
.testimonial-card p { font-size: 14px; margin-bottom: 10px; }
.testimonial-card span { font-weight: 500; color: #F1C40F; }

/* =================== PHOTO GALLERY =================== */
.photo-gallery {
    padding: 80px 50px;
    text-align: center;
}
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.gallery-card img {
    width: 250px;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-card img:hover { transform: scale(1.05); }

/* =================== CTA SECTION =================== */
.cta-section {
    padding: 60px 50px;
    background-color: #1ABC9C;
    text-align: center;
    border-radius: 15px;
    margin: 50px;
}
.cta-section p {
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
}
.cta-section .btn-small { margin: 5px; }

/* =================== FOOTER =================== */
footer {
    background-color: #1B3A57;
    color: white;
    padding: 40px 50px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-left h3 {
    font-family: 'Pacifico', cursive;
    font-size: 26px;
    margin-bottom: 10px;
    color: #F1C40F;
}
.footer-left p { color: #ccc; }
.footer-right h4 { margin-bottom: 10px; }
.footer-right .social-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    transition: 0.3s;
}
.footer-right .social-links a:hover { color: #1ABC9C; }
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #144057;
    padding-top: 15px;
    color: #ccc;
}

/* =================== ABOUT US =================== */
.about-hero {
    position: relative;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: url('../images/about us.jpg') center/cover no-repeat;
}
.about-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(27, 58, 87, 0.6);
    z-index: 1;
}
.about-hero-content { position: relative; z-index: 2; }
.about-hero h1 { font-size: 48px; margin-bottom: 20px; }
.about-hero .lead { font-size: 20px; max-width: 700px; margin: 0 auto 30px; }
.about-hero .btn { padding: 12px 30px; border-radius: 50px; font-weight: 600; margin: 0 10px; transition: 0.3s; }
.about-hero .btn:hover { background-color: #1ABC9C; color: white; }
.about-hero .btn-outline { padding: 12px 30px; border: 2px solid #F1C40F; color: #F1C40F; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.about-hero .btn-outline:hover { background-color: #F1C40F; color: #1B3A57; }

.about-cards { padding: 80px 50px; background-color: #F5F5F5; text-align: center; }
.cards-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; }
.about-card { background: white; border-radius: 15px; padding: 25px; width: 250px; transition: transform 0.3s, box-shadow 0.3s; }
.about-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.about-card .card-icon { width: 80px; margin-bottom: 15px; }
.about-card h3 { color: #1ABC9C; margin-bottom: 10px; }
.about-card p { font-size: 14px; color: #333; }

.who-we-are { padding: 80px 50px; }
.who-grid { display: flex; gap: 50px; flex-wrap: wrap; justify-content: space-between; }
.who-text { flex: 1 1 500px; }
.who-text h2 { font-size: 36px; color: #1B3A57; margin-bottom: 20px; }
.who-text h3 { color: #1ABC9C; margin-top: 20px; }
.who-text p { font-size: 16px; margin-bottom: 15px; line-height: 1.6; }
.who-ctas a { display: inline-block; padding: 10px 25px; background-color: #F1C40F; color: #1B3A57; text-decoration: none; border-radius: 50px; font-weight: 500; margin: 10px 10px 0 0; transition: 0.3s; }
.who-ctas a:hover { background-color: #1ABC9C; color: white; }

.who-stats { display: flex; flex: 1 1 300px; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; }
.stat-card { background: #1ABC9C; color: white; padding: 25px; border-radius: 15px; width: 120px; text-align: center; transition: transform 0.3s; }
.stat-card:hover { transform: translateY(-5px); }
.stat-number { font-size: 28px; font-weight: 700; margin-bottom: 5px; }
.stat-label { font-size: 14px; }

.about-values { padding: 80px 50px; background-color: #fff; text-align: center; }
.about-values h2 { font-size: 36px; color: #1B3A57; margin-bottom: 20px; }
.about-values .muted { font-size: 16px; color: #666; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.values-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.value-item { background: #F5F5F5; border-radius: 15px; padding: 25px; width: 250px; transition: transform 0.3s, box-shadow 0.3s; }
.value-item:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.value-item h4 { color: #1ABC9C; margin-bottom: 10px; }
.value-item p { font-size: 14px; color: #333; }

/* =================== AUTH / SPLIT LAYOUT (Login/Register) =================== */
/* Paste / replace the existing .auth-page block with this to get the left-blue / right-form layout */

.auth-page {
  --brand-dark: #1B3A57;
  --brand-yellow: #F1C40F;
  --brand-accent: #1ABC9C; /* blue used in image */
  font-family: 'Poppins', sans-serif;
  color: var(--brand-dark);
}

/* outer container: center and fixed width like the mock */
.auth-page .auth-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr; /* left large blue panel / right form */
  gap: 0;
  max-width: 1200px;
  margin: 34px auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(11,30,42,0.08);
  border: none;
  background: transparent;
}

/* left blue panel (marketing) */
.auth-page .auth-card .panel-left {
  background: linear-gradient(180deg, #1B3A57 0%, #1ABC9C 100%);
  color: white;
  padding: 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* left panel text */
.auth-page .panel-left h2 {
  font-family: 'Pacifico', cursive;
  font-size: 38px;
  margin: 0 0 18px;
  letter-spacing: 0.2px;
}
.auth-page .panel-left p {
  max-width: 420px;
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
}

/* CTA pill on left panel */
.auth-page .panel-left .panel-cta {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight:600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .12s ease, background .12s ease;
}
.auth-page .panel-left .panel-cta:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.12);
}

/* right form panel */
.auth-page .auth-card .panel-right {
  background: #fff;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* title */
.auth-page .panel-right h1 {
  font-size: 36px;
  text-align: center;
  margin: -6px 0 18px;
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* form card inner */
.auth-page .panel-right .form-wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* flash / error */
.auth-page .auth-alert {
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 14px;
}
.auth-page .auth-alert.error { background: #FDECEA; color: #9B2A2A; }

/* form labels and inputs */
.auth-page form { margin-top: 6px; }
.auth-page label { display: block; font-weight: 600; color: #23374a; margin-bottom: 6px; font-size: 14px; }
.auth-page input[type="text"], .auth-page input[type="email"], .auth-page input[type="password"], .auth-page textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #eef1f4;
  font-size: 15px;
  color: #1b2b3a;
  box-sizing: border-box;
  margin-bottom: 16px;
  background: #f7f8fa;
  transition: box-shadow .12s, border-color .12s, transform .08s;
}
.auth-page input:focus, .auth-page textarea:focus {
  outline: none;
  border-color: rgba(43,122,255,0.35);
  box-shadow: 0 8px 28px rgba(43,122,255,0.06);
  transform: translateY(-1px);
}

/* big primary button styled like the mock */
.auth-page .btn-more, .auth-page .btn-primary {
  display: block;
  width: 100%;
  padding: 18px 20px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--brand-accent), #1f60d9);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 8px 20px rgba(43,122,255,0.14);
  transition: transform .12s, box-shadow .12s;
}
.auth-page .btn-more:hover, .auth-page .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(43,122,255,0.18);
}

/* secondary / link button */
.auth-page .btn-back {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 40px;
  background: #fff;
  color: var(--brand-dark);
  border: 1px solid #e6e6e6;
  text-decoration: none;
  margin-left: 12px;
}

/* small helper text under button */
.auth-page .small { display:block; text-align:center; margin-top:14px; color:#7b8996; }

/* center alignment for the small form area when wide */
.auth-page .panel-right .form-wrap .actions { display:flex; justify-content:center; gap:12px; align-items:center; margin-top:12px; }

/* subtle responsive adjustments */
@media (max-width: 1000px) {
  .auth-page .auth-card { grid-template-columns: 1fr; max-width: 880px; }
  .auth-page .panel-left { padding: 44px 30px; text-align: center; align-items:center; }
  .auth-page .panel-left h2 { font-size: 32px; }
  .auth-page .panel-left p { margin: 18px auto 24px; }
  .auth-page .panel-left .panel-cta { margin: 0 auto; }
  .auth-page .panel-right { padding: 34px 30px; }
  .auth-page .panel-right h1 { font-size: 30px; }
  .auth-page .panel-right .form-wrap { max-width: 100%; }
}

/* mobile narrow */
@media (max-width: 480px) {
  .auth-page .panel-left { padding: 26px 18px; }
  .auth-page .panel-left h2 { font-size: 26px; }
  .auth-page .panel-left p { font-size: 14px; line-height:1.6; }
  .auth-page input[type="text"], .auth-page input[type="email"], .auth-page input[type="password"] { padding:12px 14px; font-size:14px; }
  .auth-page .btn-more { padding:14px 16px; font-size:16px; }
}

/* =================== HERO / SERVICES =================== */
.hero-services {
    background: url('../images/sb3.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
}
.hero-services h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
}
.hero-services p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin-top: 10px;
}
.hero-services .explore-btn {
    background: #F1C40F;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 25px;
    transition: 0.3s;
}
.hero-services .explore-btn:hover {
    background: #1ABC9C;
}

/* =================== SERVICES SECTIONS =================== */
.services-section, .subtypes-section, .service-items-section {
    padding: 60px 10%;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
}
.service-grid, .subtype-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.service-card, .subtype-card, .service-item {
    background: #F5F5F5;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover, .subtype-card:hover, .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-card img, .subtype-card img, .service-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.service-info {
    padding: 20px;
}
.service-info h3 {
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}
.service-info p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}
.price {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #1B3A57;
}
.location {
    font-size: 13px;
    color: #666;
    font-family: 'Poppins', sans-serif;
}
.btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}
.btn-primary { background: #1ABC9C; color: #fff; }
.btn-primary:hover { background: #F1C40F; }
.btn-success { background: #1ABC9C; color: #fff; }
.btn-success:hover { background: #F1C40F; }

/* 🎯 Back Button Style Only */
.back-btn {
    display: inline-block;
    background-color: #1ABC9C;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    margin: 15px 0;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.back-btn:hover {
    background-color: #F1C40F;
    transform: translateY(-2px);
}

.back-btn {
    text-align: center;
    display: inline-block;
}

/* ===== Admin panel ===== */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; gap: 20px; padding: 28px; }
.admin-sidebar { background:#fff; border-radius:10px; padding:18px; box-shadow:0 8px 24px rgba(0,0,0,0.05); }
.admin-sidebar .admin-brand a { font-family: 'Pacifico', cursive; color:#1B3A57; font-size:20px; text-decoration:none; }
.admin-sidebar nav ul { list-style:none; padding:0; margin:12px 0 0 0; }
.admin-sidebar nav li { margin:10px 0; }
.admin-sidebar nav a { color:#23374a; text-decoration:none; font-weight:600; }
.admin-main { background:#fff; border-radius:10px; padding:20px; box-shadow:0 8px 24px rgba(0,0,0,0.04); }
.stat-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap:12px; }
.stat { padding:16px; border-radius:8px; background:#f7fbff; text-align:center; }
.table { width:100%; border-collapse: collapse; margin-top:14px; }
.table th, .table td { padding:10px; border-bottom:1px solid #f2f4f6; text-align:left; }
.actions-btn { display:inline-block; padding:6px 10px; border-radius:6px; background:#1B3A57; color:#fff; text-decoration:none; font-size:13px; }
.btn-danger { background:#d9534f; }
.small-muted { color:#666; font-size:13px; }
@media(max-width:900px){ .admin-layout{grid-template-columns:1fr; padding:12px;} .admin-sidebar{display:flex;overflow:auto;} }

/* ------------------------------
   BOOKING PAGE STYLES (LankaGo)
   ------------------------------ */

.booking-section {
  padding: 80px 10%;
  background: #f8f9fb;
  font-family: 'Poppins', sans-serif;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.booking-left {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
}

.booking-left img.service-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-bottom: 3px solid #1B3A57;
}

.service-card-body {
  padding: 25px 30px;
}

.service-card-body h2 {
  color: #1B3A57;
  font-size: 28px;
  margin-bottom: 15px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.meta-badge {
  background: #1B3A57;
  color: #fff;
  padding: 6px 14px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
}

.meta-muted {
  color: #555;
  font-size: 14px;
}

.short-desc {
  margin: 15px 0;
  color: #444;
  line-height: 1.7;
}

.note-small {
  background: #eef6ff;
  color: #1B3A57;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
}

/* ---- RIGHT SIDE: FORM ---- */
.booking-right {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 30px;
}

.booking-right h3 {
  font-size: 22px;
  color: #004c91;
  margin-bottom: 20px;
  text-align: center;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.form-row input,
.form-row textarea,
.form-row select {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: #0077cc;
  box-shadow: 0 0 0 3px rgba(0,119,204,0.1);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Date Inputs in Row */
.date-row {
  display: flex;
  gap: 15px;
}

.date-col {
  flex: 1;
}

/* Submit Button */
.form-actions {
  text-align: center;
}

.btn.btn-primary {
  background-color: #F1C40F;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn.btn-primary:hover {
  background-color: #1ABC9C;
}

/* Success & Error Messages */
.success-msg, .error-msg {
  text-align: center;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 500;
  margin-bottom: 10px;
}

.success-msg {
  background: #e8f8ee;
  color: #1a7f3c;
  border: 1px solid #b6e3c6;
}

.error-msg {
  background: #fdeaea;
  color: #c0392b;
  border: 1px solid #f5b7b1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-section {
    padding: 60px 7%;
  }

  .booking-left img.service-image {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .booking-section {
    padding: 50px 5%;
  }

  .service-card-body h2 {
    font-size: 22px;
  }

  .btn.btn-primary {
    width: 100%;
  }
}

/* =================== Contact page (scoped) =================== */
/* Paste this at the end of your main css/style.css */

.contact-page { font-family: "Poppins", sans-serif !important; color: inherit; }

.contact-page h1, .contact-page h2, .contact-page h3, .contact-page h4,
.contact-page p, .contact-page label, .contact-page .form-control,
.contact-page .form-label, .contact-page .detail-par, .contact-page .detail-item,
.contact-page .flash { font-family: "Poppins", sans-serif !important; }

/* Keep site logo using Pacifico (unchanged) */
.logo a { font-family: 'Pacifico', cursive; }

/* Layout wrapper */
.contact-page .contact-wrap {
  max-width:1200px;
  margin:36px auto;
  display:flex;
  gap:28px;
  padding:18px;
  align-items:flex-start;
}
@media (max-width:992px){
  .contact-page .contact-wrap{ flex-direction:column; padding:16px; }
}

/* LEFT panel - blurred background with overlay card */
.contact-page .left {
  position: relative;
  flex:0 0 420px;
  min-height: 420px;
  border-radius:12px;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Background image layer — replace path if needed */
.contact-page .left::before {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background-image: url('../images/CONTACT.jpg'); /* <-- put your image at images/contact-bg.jpg */
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: blur(6px) brightness(0.6);
  -webkit-filter: blur(6px) brightness(0.6);
  z-index: 0;
  transition: transform .35s ease;
}

/* Overlay card with contact details */
.contact-page .left .detail-overlay {
  position: relative;
  z-index: 2;
  width: calc(100% - 40px);
  margin: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(11,30,42,0.08);
}

.contact-page .left h3 { margin-bottom:8px; color:var(--brand-dark,#1B3A57); font-size:20px; }
.contact-page .left p, .contact-page .left li { color:#444; margin-bottom:8px; font-size:14px; line-height:1.5; }

.contact-page .contact-icons { display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; }
.contact-page .contact-pill {
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(255,255,255,0.9);
  padding:8px 12px; border-radius:999px; font-weight:600; color:#1B3A57;
  border:1px solid rgba(27,58,87,0.06);
}

/* subtle zoom on background when hovering left panel */
.contact-page .left:hover::before { transform: scale(1.05); }

/* RIGHT: form panel styles */
.contact-page .right {
  background:#f1f2f5; border-radius:12px; padding:22px; box-shadow:0 10px 30px rgba(11,30,42,0.06); flex:1 1 600px;
}

.contact-page .right h2 { margin-top:0; margin-bottom:14px; color:var(--brand-dark,#1B3A57); }

/* Toggle details button */
.contact-page .btn-toggle { display:inline-block; margin-bottom:12px; cursor:pointer; border-radius:8px; padding:8px 14px; font-weight:600; background:var(--brand-dark,#1B3A57); color:#fff; border:0; font-size:14px; }
.contact-page .btn-toggle[aria-expanded="true"] { background:var(--brand-yellow,#F1C40F); color:var(--brand-dark,#1B3A57); }

/* Detail card (hidden by default) */
.contact-page .detail-card {
  margin-top:12px; padding:14px; border-radius:10px; background:#fff; border:1px solid rgba(27,58,87,0.06);
  box-shadow:0 8px 16px rgba(11,30,42,0.04); overflow:hidden;
  transition:max-height .32s ease, opacity .28s ease, transform .28s ease;
  max-height:0; opacity:0; transform:translateY(-6px) scaleY(.98);
}
.contact-page .detail-card.open { max-height:600px; opacity:1; transform:none; }
.contact-page .detail-par { color:#23374a; line-height:1.6; margin:0 0 10px; font-size:15px; }
.contact-page .detail-contacts { display:flex; flex-direction:column; gap:8px; }
.contact-page .detail-item { color:#445; font-size:14px; }
.contact-page .detail-item strong { color:var(--brand-dark,#1B3A57); margin-right:6px; }

/* Flash messages scoped */
.contact-page .flash { padding:12px; border-radius:8px; margin-bottom:12px; font-size:14px; }
.contact-page .flash.success { background:#E6F8EE; color:#0A6C4F; }
.contact-page .flash.error { background:#FDECEA; color:#9B2A2A; }

/* Form controls */
.contact-page .form-row { margin-bottom:12px; }
.contact-page label.form-label { display:block; margin-bottom:6px; font-size:14px; color:#23374a; font-weight:600; }
.contact-page .form-control { width:100%; padding:10px 12px; border:1px solid #e6e6e6; border-radius:8px; font-size:14px; font-family:inherit; color:#1b2b3a; box-sizing:border-box; }
.contact-page textarea.form-control { min-height:140px; resize:vertical; line-height:1.6; }

/* Submit button */
.contact-page .submit-btn {
  display:inline-block; margin-top:8px; padding:12px 26px; border-radius:40px; background:var(--brand-dark,#1B3A57); color:#fff; border:0; font-weight:700; cursor:pointer; transition:transform .12s ease, background .12s;
}
.contact-page .submit-btn:hover { transform:translateY(-3px); background:#0f2b41; }

.contact-page a { color:var(--brand-dark,#1B3A57); text-decoration:underline; }

/* Responsive tweaks */
@media (max-width:480px){
  .contact-page .left { order:2; min-height:320px; }
  .contact-page .right { order:1; }
  .contact-page .contact-wrap { gap:16px; }
}


/* =================== RESPONSIVE =================== */
@media (max-width:768px){
    .nav-links {display:none; flex-direction: column; width:100%; background:#1B3A57; position:absolute; top:70px; left:0;}
    .nav-links.active {display:flex;}
    .hamburger {display:flex;}
    .card-container, .destination-container, .offers-container, .gallery-container, .cards-grid, .values-grid {flex-direction:column; align-items:center;}
    .who-grid {flex-direction: column; align-items: center;}
    .who-stats {flex-direction: row;}
    .hero-services h1 { font-size: 36px; }
    .hero-services p { font-size: 16px; }
    .hero-services .explore-btn { padding: 10px 25px; font-size: 14px; }
    .service-grid, .subtype-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card img, .subtype-card img, .service-item img { height: 160px; }
    .service-info h3 { font-size: 16px; }
    .service-info p { font-size: 13px; }
    .booking-section { padding: 30px 20px; }
    .booking-section h2 { font-size: 28px; }
    .booking-section p { font-size: 14px; }
    .booking-form input, .booking-form textarea { font-size: 14px; padding: 10px 12px; }
    .booking-form button { font-size: 14px; padding: 10px 25px; }
}
@media (max-width:480px){
    .hero-video-content h1, .about-hero h1 {font-size:28px;}
    .hero-video-content p, .about-hero .lead {font-size:14px;}
    .destination-card, .offer-card, .feature-card, .gallery-card, .about-card, .value-item {width:90%;}
    .who-stats {flex-wrap: wrap;}
    .cta-section {margin:20px;}
    .hero-services h1 { font-size: 28px; }
    .hero-services p { font-size: 14px; }
    .hero-services .explore-btn { padding: 8px 20px; font-size: 13px; }
    .service-info h3 { font-size: 15px; }
    .service-info p { font-size: 12px; }
    .service-card img, .subtype-card img, .service-item img { height: 140px; }
    .booking-section h2 { font-size: 24px; }
    .booking-section p { font-size: 13px; }
    .booking-form input, .booking-form textarea { font-size: 13px; padding: 8px 10px; }
    .booking-form button { font-size: 13px; padding: 8px 20px; }
}
/* Force logo font to Pacifico on all pages */
.logo a {
    font-family: 'Pacifico', cursive !important;
    font-size: 32px;
}
