﻿/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700&display=swap');

/* Global Variables */
:root {
  /* Brand Colors */
  --primary: #0F5A67; /* Deep Teal */
  --primary-light: #167A8C;
  --secondary: #C68C36; /* Golden Yellow */
  --secondary-hover: #D89A3E;
  
  /* Neutral Colors */
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #555555;
  --border-color: #E0E0E0;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout & Spacing */
  --max-width: 1200px;
  --section-padding: 5rem 1rem;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-round: 50px;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 90, 103, 0.1);
}

/* Reset & Basic Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--radius-round);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(198, 140, 54, 0.3);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 140, 54, 0.4);
  color: var(--bg-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-outline-white {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary);
}

/* Section Common */
.section {
  padding: var(--section-padding);
}

.section-bg-white {
  background-color: var(--bg-white);
}

.section-bg-primary {
  background-color: var(--primary);
  color: var(--bg-white);
}

.section-bg-primary h2, 
.section-bg-primary p {
  color: var(--bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.logo-image {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text span {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 2px;
  margin-left: 3px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: var(--bg-white);
  font-size: 1.5rem;
  font-weight: 500;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  z-index: 5;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.play-pause-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-pause-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 90, 103, 0.7) 0%, rgba(15, 90, 103, 0.2) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 650px;
  color: var(--bg-white);
  animation: fadeUp 1s ease-out;
}

.hero-tagline {
  font-size: 4rem;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subheadline {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* --- Stats / Features Strip --- */
.features-strip {
  background-color: var(--bg-white);
  padding: 3rem 0;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(15, 90, 103, 0.05);
  border: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-5px);
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Services Preview --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--secondary);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(198, 140, 54, 0.1);
  color: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--secondary);
  color: var(--bg-white);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card p {
  flex-grow: 1;
  font-size: 0.95rem;
}

.service-link {
  margin-top: 1.5rem;
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link::after {
  content: '\2192'; /* Unicode Right Arrow */
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-link:hover::after {
  transform: translateX(5px);
}

/* --- Why Choose Us --- */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-image {
  border-radius: var(--radius-lg);
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-us-content .list-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.list-icon {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.list-text h4 {
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: var(--secondary);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  font-size: 0.9rem;
}
.footer-bottom p {
  color: var(--bg-white);
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* --- Package Catalog Grid --- */
.package-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.catalog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.catalog-card-img {
  position: relative;
  height: 220px;
}

.catalog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #e74c3c;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4);
}

.catalog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.catalog-card-content h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.catalog-card-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #eee;
}

.catalog-card-details i {
  color: var(--secondary);
  margin-right: 0.4rem;
}

.catalog-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.catalog-card-features li {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.catalog-card-features li i {
  color: var(--secondary);
  margin-right: 0.6rem;
  font-size: 0.85rem;
}

.catalog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.price-amount small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* --- Package Detail Pages --- */
.package-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
  padding-top: 100px;
  overflow: hidden;
}

.package-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(15, 90, 103, 0.8));
  z-index: 1;
}

.package-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.package-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.package-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bg-white);
}

.package-hero-content p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.promo-banner-large {
  display: inline-block;
  background-color: #e74c3c;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.5);
  margin-bottom: 1rem;
}

.pricing-table-container {
  overflow-x: auto;
  margin: 3rem 0;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  background: var(--bg-white);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.pricing-table th, .pricing-table td {
  padding: 1.2rem;
  text-align: center;
  border: 1px solid #eee;
}

.pricing-table th {
  background-color: var(--primary);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-table th i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

.pricing-table td.duration-cell {
  font-weight: 700;
  color: var(--primary);
  background-color: rgba(15, 90, 103, 0.03);
  text-align: left;
}

.price-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.original-price {
  color: #999;
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.promo-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.package-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.detail-box {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--secondary);
}

.detail-box h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.detail-list li i {
  color: #2ecc71;
  margin-top: 0.25rem;
}

.detail-box.notes-box {
  border-top-color: #e74c3c;
}

.detail-box.notes-box .detail-list li i {
  color: var(--primary);
}

.book-now-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: rgba(15, 90, 103, 0.05);
  border-radius: var(--radius-lg);
  margin-bottom: 4rem;
}

.book-now-section h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.book-now-section p {
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* --- Cart Icon in Header --- */
.cart-icon-btn {
  position: relative;
  color: var(--primary);
  font-size: 1.5rem;
  margin-left: 2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.cart-icon-btn:hover {
  color: var(--secondary);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #e74c3c;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* --- Package Selection Form --- */
.package-selection-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: #f9f9f9;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(15, 90, 103, 0.2);
}

.total-price-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.5rem 0;
  text-align: center;
}

/* --- Cart Page Table --- */
.cart-table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.cart-table th, .cart-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.cart-table th {
  background-color: rgba(15, 90, 103, 0.05);
  color: var(--primary);
  font-family: var(--font-heading);
}

.cart-table td.cart-item-title {
  font-weight: 700;
  color: var(--primary);
}

.cart-table td.cart-item-price {
  font-weight: 600;
  color: var(--primary);
}

.remove-btn {
  color: #e74c3c;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.remove-btn:hover {
  color: #c0392b;
}

.cart-summary {
  background: rgba(15, 90, 103, 0.05);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: right;
}

.cart-total-line {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.cart-total-line.grand-total {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  border-top: 2px solid #ddd;
  padding-top: 1rem;
}

.empty-cart-message {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-light);
}

.empty-cart-message i {
  font-size: 4rem;
  color: #ddd;
  margin-bottom: 1rem;
}

/* --- Destinations Carousel --- */
.carousel-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0 3rem 0;
}
.carousel-wrapper::-webkit-scrollbar {
  display: none;
}
.carousel-track {
  display: flex;
  gap: 2rem;
  /* Dynamically centers the first and last slides whether on mobile or large desktop screens */
  padding: 0 max(7.5vw, calc(50vw - 450px));
}
.carousel-slide {
  position: relative;
  flex: 0 0 85vw;
  max-width: 900px;
  height: 550px;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s ease;
  display: block;
}
.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.carousel-slide:hover img {
  transform: scale(1.05);
}
.carousel-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 2rem 2rem 2rem;
  background: linear-gradient(to top, rgba(15, 90, 103, 0.9), transparent);
  color: white;
}
.carousel-slide-content h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.carousel-slide-content p {
  font-size: 1.1rem;
  opacity: 0.95;
  color: #ffffff;
}

/* --- Destinations Page Hero --- */
.dest-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}
.dest-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}
.dest-hero-bg.active {
    opacity: 1;
}
.dest-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 90, 103, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}
.dest-hero h1 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    max-width: 800px;
    line-height: 1.2;
    color: white;
}
.dest-hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
}
.pause-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}
.pause-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* --- Country Pages Shared Styles --- */
.country-hero {
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: left;
}
.country-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    max-width: 800px;
    line-height: 1.2;
    color: white;
}
.country-hero-text {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
}
.city-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}
.city-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.city-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.city-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.city-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.city-card-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.city-card-desc {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.city-card-desc.expanded {
    display: block;
    -webkit-line-clamp: unset;
}
.city-card-link {
    color: #d35400;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-weight: 600;
}
.city-card-link:hover {
    text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero-tagline { font-size: 3rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .why-us-image { border-top-left-radius: 60px; border-bottom-right-radius: 60px; }
}

@media (max-width: 768px) {
  .header .container { justify-content: space-between; }
  .hamburger { display: block; }
  
  .nav-menu {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: 0.3s;
    font-size: 1.25rem;
  }
  
  .nav-menu.active { left: 0; }
  
  .hero-tagline { font-size: 2.5rem; }
  .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-strip { margin-top: 2rem; padding: 2rem 0; }
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  height: fit-content;
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 0;
  margin-top: 1rem;
}

.testimonial-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center bottom;
  background-color: transparent;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
}

.testimonials-container {
  max-width: 1500px !important;
}

.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  margin-top: 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.testimonial-carousel::-webkit-scrollbar {
  display: none;
}
.testimonial-carousel .testimonial-photo {
  margin-top: 0;
  scroll-snap-align: center;
  flex: 0 0 100%;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
}
.carousel-dots .dot {
  width: 8px;
  height: 8px;
  background-color: var(--border-color);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.carousel-dots .dot.active {
  background-color: var(--primary);
}

.quote-icon {
  font-size: 2rem;
  color: var(--secondary);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
}

.testimonial-author h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



/* --- Custom UAE Visa Package Styles --- */
.visa-inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    text-align: center;
}
.visa-inclusion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.visa-inclusion-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.visa-inclusion-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.visa-inclusion-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.process-flow-container {
    background: white;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    margin: 4rem 0;
}
.process-flow-title {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    white-space: nowrap;
}
.process-flow-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
}
.process-icon {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.process-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
}
.process-arrow {
    color: var(--secondary);
    font-size: 1.5rem;
}

.promo-split-grid {
    display: flex;
    gap: 1rem;
    position: relative;
    margin: 3rem 0;
    flex-wrap: wrap;
}
.promo-box {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    color: white;
    box-shadow: var(--shadow-md);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}
.promo-box.topgolf {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../assets/images/topgolf-bg.png') center/cover;
    border: 2px solid var(--secondary);
}
.promo-box.buffet {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../assets/images/buffet-bg.png') center/cover;
    background-color: #111;
}
.promo-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 900;
}
.promo-box h4 {
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.promo-box p {
    font-weight: 700;
    font-size: 1.2rem;
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.promo-or-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
    border: 3px solid white;
}

.tabby-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 1px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.tabby-left h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}
.tabby-left p {
    color: var(--text-muted);
}
.tabby-center {
    text-align: center;
}
.tabby-center span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}
.tabby-logo {
    background: #3DF2A7;
    color: black;
    font-weight: bold;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    display: inline-block;
}

.tamara-logo {
    background: linear-gradient(90deg, #AEE4FE, #FDE694, #FF9981, #C487C6);
    color: black;
    font-weight: 900;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    display: inline-block;
}
.tabby-right ul {
    list-style: none;
    font-size: 0.9rem;
}
.tabby-right li {
    margin-bottom: 0.3rem;
}
.tabby-right i {
    color: #28a745;
    margin-right: 0.5rem;
}

.booking-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.whatsapp-pm-box {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.whatsapp-pm-box:hover {
    transform: scale(1.02);
}
.whatsapp-pm-box h3 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.whatsapp-pm-box i {
    font-size: 3rem;
    color: #25D366;
}
.qr-box {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.qr-box h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 800;
}
.qr-placeholder {
    width: 120px;
    height: 120px;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qr-placeholder i {
    font-size: 5rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .process-arrow { display: none; }
    .process-step { margin-bottom: 1rem; }
    .promo-split-grid { flex-direction: column; }
    .promo-or-badge {
        position: static;
        margin: -25px auto;
        transform: none;
    }
    .booking-action-grid { grid-template-columns: 1fr; }
}

/* --- Booking & Contact Page Upgrades --- */
.booking-steps-section {
    padding: 3rem 0 1rem;
    background-color: var(--bg-white);
    text-align: center;
}
.booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.booking-step-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}
.booking-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}
.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.booking-step-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.booking-step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.booking-step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.whatsapp-booking-card {
    background: transparent;
    color: var(--bg-white);
    padding: 0 0 2.5rem 0;
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.whatsapp-booking-card h3 {
    color: var(--bg-white);
    font-size: 2.2rem;
    margin-bottom: 0;
    font-weight: 800;
}
.whatsapp-booking-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
}
.qr-container-white {
    background: white;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    display: inline-block;
    margin-bottom: 1.5rem;
}
.btn-whatsapp-solid {
    background: #25D366;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: white;
    background: #128C7E;
}










/* Kazakhstan Gallery */
.kazakhstan-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-rows: 350px;
    gap: 1.5rem;
    margin-top: 2rem;
}
.kazakhstan-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}
.kazakhstan-gallery img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .kazakhstan-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    .kazakhstan-gallery .img-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}


.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-text.expanded {
  -webkit-line-clamp: unset;
}
.show-more-btn {
  background: none;
  border: none;
  color: var(--secondary);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-decoration: underline;
}
