/* ================================================
   Explore Portugal Tours — Main Stylesheet
   ================================================ */

:root {
  --primary: #468ae7;
  --primary-dark: #2576e8;
  --primary-hover: #3a7ad4;
  --accent-orange: #ffa127;
  --accent-yellow: #f7c02e;
  --header-bg: #000000;
  --footer-bg: #202020;
  --footer-bottom: #181818;
  --text-body: #8c8c8c;
  --text-heading: #383838;
  --text-dark: #333;
  --text-light: #fff;
  --border: #e1e1e1;
  --bg-light: #f8f8f8;
  --bg-section: #f4f4f4;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --radius: 4px;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  background: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-heading);
  line-height: 1.3;
  font-weight: 600;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* Price overlay — hidden on desktop, shown on mobile via responsive */
.card-price-overlay { display: none; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(70,138,231,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--primary);
  color: #fff;
}

/* ---- Section Headings ---- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 34px;
  color: var(--text-heading);
  margin-bottom: 15px;
}
.section-header p {
  font-size: 15px;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}
.section-divider {
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  background: var(--header-bg);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 45px;
  width: auto;
}
.logo-text {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo-text span { color: var(--primary); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 35px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: var(--radius);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: #111;
  padding: 20px;
  border-top: 1px solid #333;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }

/* ================================================
   HERO / BANNER
   ================================================ */
.hero {
  min-height: 85vh;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%),
              url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
}
.hero-content {
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 54px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--accent-yellow); }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Search Bar */
.search-bar {
  background: #fff;
  border-radius: 6px;
  padding: 20px 25px;
  display: flex;
  gap: 15px;
  align-items: flex-end;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  max-width: 800px;
  margin: 0 auto;
}
.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search-field label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-body);
}
.search-field select,
.search-field input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  cursor: pointer;
}
.search-field select:focus,
.search-field input:focus {
  outline: none;
  border-color: var(--primary);
}
.search-bar .btn { min-width: 130px; padding: 11px 25px; }

/* ================================================
   PAGE TITLE BAR
   ================================================ */
.page-title-bar {
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%),
              url('images/page-title-background.jpg') center/cover no-repeat;
  padding: 100px 0 50px;
  text-align: center;
  color: #fff;
}
.page-title-bar h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 12px;
}
.breadcrumbs {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { color: var(--primary); }

/* ================================================
   TOUR CARDS
   ================================================ */
.tours-section { padding: 80px 0; }
.tours-section.bg-light { background: var(--bg-section); }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tours-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.tour-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}
.tour-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-image img { transform: scale(1.05); }

.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 3px;
}
.tour-badge.orange { background: var(--accent-orange); }

.tour-card-body { padding: 22px; }
.tour-card-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--text-body);
}
.tour-card-meta i { color: var(--primary); margin-right: 4px; }
.tour-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--text-heading);
  line-height: 1.4;
}
.tour-card h3 a { color: var(--text-heading); }
.tour-card h3 a:hover { color: var(--primary); }
.tour-card p {
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 18px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.price-block .original {
  font-size: 13px;
  color: var(--text-body);
  text-decoration: line-through;
}
.price-block .current {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
}
.price-block .from-label {
  font-size: 11px;
  color: var(--text-body);
}

/* ================================================
   FILTER BAR (Tour List page)
   ================================================ */
.filter-section {
  background: var(--bg-section);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.filter-bar {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-tabs {
  display: flex;
  gap: 5px;
}
.filter-tab {
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: var(--text-body);
  transition: all var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.filter-bar select {
  padding: 9px 16px;
  border: 2px solid var(--border);
  border-radius: 25px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
  min-width: 180px;
  color: var(--text-dark);
}
.filter-bar select:focus { outline: none; border-color: var(--primary); }

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-section {
  padding: 80px 0;
  background: var(--primary);
  color: #fff;
}
.why-section .section-header .subtitle { color: rgba(255,255,255,0.8); }
.why-section .section-header h2 { color: #fff; }
.why-section .section-header p { color: rgba(255,255,255,0.85); }
.why-section .section-divider { background: rgba(255,255,255,0.5); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-card {
  text-align: center;
  padding: 30px 20px;
}
.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
  transition: background var(--transition);
}
.feature-card:hover .feature-icon { background: rgba(255,255,255,0.25); }
.feature-card h3 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

/* ================================================
   SERVICES PAGE
   ================================================ */
.services-section { padding: 80px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 35px 30px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 19px; margin-bottom: 12px; }
.service-card p { font-size: 14px; line-height: 1.7; }

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-section { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.about-image img { width: 100%; height: 450px; object-fit: cover; }
.about-text .subtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}
.about-text h2 { font-size: 36px; margin-bottom: 20px; }
.about-text p { margin-bottom: 18px; font-size: 15px; line-height: 1.8; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  display: block;
}
.stat-label { font-size: 13px; color: var(--text-body); margin-top: 5px; }

/* Team */
.team-section { padding: 60px 0 80px; background: var(--bg-section); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card { text-align: center; }
.team-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 4px solid var(--primary);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 14px; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}
.contact-form h2 { font-size: 28px; margin-bottom: 8px; }
.contact-form > p { font-size: 15px; margin-bottom: 30px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-heading); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(70,138,231,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-top: 15px;
  font-size: 14px;
}

.contact-info h3 { font-size: 22px; margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 14px; color: var(--text-heading); margin-bottom: 3px; }
.contact-item-text span { font-size: 14px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  font-size: 16px;
  transition: all var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ================================================
   TOUR DETAIL PAGE
   ================================================ */
.tour-detail { padding: 60px 0; }
.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.tour-detail-main {}
.tour-detail-hero {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 35px;
  height: 420px;
}
.tour-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-meta-bar {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.tour-meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.tour-meta-item i { color: var(--primary); font-size: 16px; }
.tour-meta-item strong { color: var(--text-heading); }

.tour-section-title {
  font-size: 22px;
  color: var(--text-heading);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.tour-description { margin-bottom: 40px; }
.tour-description p { font-size: 15px; line-height: 1.8; margin-bottom: 15px; }

.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 40px; }
.included-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; padding: 5px 0; }
.included-item i { color: #28a745; margin-top: 2px; flex-shrink: 0; }
.not-included-item i { color: #dc3545; }

.itinerary-list { margin-bottom: 40px; }
.itinerary-stop {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.stop-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.stop-content h4 { font-size: 16px; color: var(--text-heading); margin-bottom: 6px; }
.stop-content p { font-size: 14px; }

/* Booking Sidebar */
.booking-sidebar { position: sticky; top: 90px; }
.booking-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.booking-card-header {
  background: var(--primary);
  color: #fff;
  padding: 20px 25px;
}
.booking-card-header .from { font-size: 13px; opacity: 0.85; }
.booking-card-header .price {
  font-size: 36px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}
.booking-card-header .original {
  font-size: 15px;
  text-decoration: line-through;
  opacity: 0.7;
}
.booking-card-body { padding: 25px; }
.booking-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.booking-detail:last-of-type { border-bottom: none; margin-bottom: 20px; }
.booking-detail strong { color: var(--text-heading); }
.booking-detail-select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-section);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 5px 8px;
  cursor: pointer;
  max-width: 60%;
}
.booking-detail-select:focus { outline: none; border-color: var(--primary); }
.booking-card .btn { width: 100%; text-align: center; font-size: 15px; padding: 14px; margin-top: 15px; }
.booking-note { font-size: 12px; color: var(--text-body); text-align: center; margin-top: 12px; }
.booking-note i { color: #28a745; margin-right: 4px; }

/* ================================================
   BLOG PAGE
   ================================================ */
.blog-section { padding: 60px 0 80px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-3px); }
.blog-card-image { height: 220px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 25px; }
.blog-meta { display: flex; gap: 15px; font-size: 12px; color: var(--text-body); margin-bottom: 12px; }
.blog-meta i { color: var(--primary); margin-right: 4px; }
.blog-card h2 { font-size: 19px; margin-bottom: 10px; line-height: 1.4; }
.blog-card h2 a { color: var(--text-heading); }
.blog-card h2 a:hover { color: var(--primary); }
.blog-card p { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }

/* ================================================
   GALLERY PAGE
   ================================================ */
.gallery-section { padding: 60px 0 80px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  height: 250px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(70,138,231,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-overlay i { font-size: 28px; color: #fff; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section { padding: 80px 0; background: var(--bg-section); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 80px;
  color: var(--primary);
  opacity: 0.1;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}
.stars { color: var(--accent-yellow); font-size: 14px; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 600; color: var(--text-heading); }
.reviewer-location { font-size: 12px; color: var(--text-body); }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-logo img { height: 40px; margin-bottom: 15px; }
.footer-logo-text {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.footer-logo-text span { color: var(--primary); }
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 15px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-contact-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-social { display: flex; gap: 10px; margin-top: 15px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.footer-bottom {
  background: var(--footer-bottom);
  padding: 20px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: var(--primary); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(70,138,231,0.4);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); background: var(--primary-dark); }

/* ================================================
   DESKTOP SEARCH BAR
   ================================================ */
.search-bar-desktop { display: flex; } /* shown on desktop */

/* ================================================
   FLOATING CALL BUTTON (all pages, mobile)
   ================================================ */
.floating-call {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 998;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-call:hover { transform: scale(1.05); color: #fff; }
.floating-call i { font-size: 18px; }

/* ================================================
   STICKY MOBILE BOOKING BAR (tour pages)
   ================================================ */
.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: #fff;
  border-top: 2px solid var(--primary);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-booking-bar .mbb-price { line-height: 1.2; }
.mobile-booking-bar .mbb-from { font-size: 11px; color: var(--text-body); }
.mobile-booking-bar .mbb-original { font-size: 12px; text-decoration: line-through; color: var(--text-body); }
.mobile-booking-bar .mbb-current { font-size: 22px; font-weight: 700; color: var(--primary); font-family: 'Poppins', sans-serif; }
.mobile-booking-bar .btn { flex-shrink: 0; padding: 13px 24px; font-size: 14px; }

/* ================================================
   MOBILE FOOTER ACCORDION
   ================================================ */
.footer-col-toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.footer-col-head { display: flex; align-items: center; }
.footer-col-body { overflow: hidden; transition: max-height 0.3s ease; }

/* ================================================
   RESPONSIVE — TABLET 1140px
   ================================================ */
@media (max-width: 1140px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .tour-detail-grid { grid-template-columns: 1fr 320px; }
}

/* ================================================
   RESPONSIVE — MOBILE LANDSCAPE 999px
   ================================================ */
@media (max-width: 999px) {
  /* Tighten spacing */
  .tours-section { padding: 55px 0; }
  .why-section { padding: 55px 0; }
  .testimonials-section { padding: 55px 0; }
  .services-section { padding: 55px 0; }
  .about-section { padding: 55px 0; }
  .contact-section { padding: 55px 0; }
  .blog-section { padding: 40px 0 55px; }
  .gallery-section { padding: 40px 0 55px; }
  .section-header { margin-bottom: 35px; }

  .hero h1 { font-size: 38px; }
  .section-header h2 { font-size: 27px; }
  .search-bar { flex-direction: column; gap: 12px; padding: 18px 20px; }
  .search-bar .btn { width: 100%; padding: 13px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .included-grid { grid-template-columns: 1fr; }
}

/* ================================================
   RESPONSIVE — MOBILE PORTRAIT 767px
   ================================================ */
@media (max-width: 767px) {
  /* Navigation */
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 16px; }

  /* Global spacing reduction */
  .container { padding: 0 16px; }
  .tours-section { padding: 44px 0; }
  .why-section { padding: 44px 0; }
  .testimonials-section { padding: 44px 0; }
  .services-section { padding: 44px 0; }
  .about-section { padding: 44px 0; }
  .contact-section { padding: 44px 0; }
  .blog-section { padding: 32px 0 44px; }
  .gallery-section { padding: 32px 0 44px; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: 24px; }
  .section-header p { font-size: 14px; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-content { padding: 48px 16px 40px; }
  .hero h1 { font-size: 28px; line-height: 1.25; margin-bottom: 14px; }
  .hero p { font-size: 15px; margin-bottom: 28px; }
  .hero-badge { font-size: 11px; padding: 5px 14px; margin-bottom: 16px; }

  /* Search bar is desktop-only */
  .search-bar-desktop { display: none !important; }

  /* Page title bar */
  .page-title-bar { padding: 75px 0 30px; }
  .page-title-bar h1 { font-size: 26px; }
  .breadcrumbs { font-size: 13px; margin-top: 6px; }

  /* ---- Tour cards — vertical, compact, price badge on image ---- */
  .tours-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0; gap: 16px; }

  /* Reset card to clean vertical */
  .tour-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  }

  /* Image: good height, holds badge + price badge */
  .tour-card-image {
    width: 100%;
    height: 175px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  .tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  /* Price badge — frosted glass pill, bottom-right of image */
  .card-price-overlay {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.60);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 5px 10px 6px;
    text-align: right;
    border: 1px solid rgba(255,255,255,0.12);
  }
  .card-price-overlay .cpo-original {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    text-decoration: line-through;
    display: block;
    line-height: 1;
  }
  .card-price-overlay .cpo-current {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    display: block;
    line-height: 1.15;
  }

  /* Card body — compact but fully readable */
  .tour-card-body {
    padding: 14px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
  }
  .tour-card-meta {
    font-size: 12px;
    color: var(--text-body);
    gap: 12px;
    margin-bottom: 6px;
    display: flex;
  }
  .tour-card h3 {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .tour-card p { display: none; }

  /* Footer: hide price (it's on image), show button full-width */
  .tour-card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: auto;
    gap: 0;
  }
  .tour-card-footer .price-block { display: none; }
  .tour-card-footer .btn {
    flex: 1;
    text-align: center;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 700;
    min-height: 42px;
    border-radius: 6px;
    letter-spacing: 0.4px;
  }

  /* Why/Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature-card { padding: 20px 14px; }
  .feature-icon { width: 56px; height: 56px; font-size: 22px; margin-bottom: 14px; }
  .feature-card h3 { font-size: 15px; }
  .feature-card p { font-size: 13px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }
  .service-icon { font-size: 34px; margin-bottom: 14px; }
  .service-card h3 { font-size: 17px; }

  /* Tour detail */
  .tour-detail { padding: 36px 0 90px; } /* bottom space for sticky bar */
  .tour-detail-hero { height: 240px; margin-bottom: 24px; }
  .tour-meta-bar { flex-wrap: wrap; gap: 10px; padding: 14px 0; }
  .tour-meta-item { font-size: 13px; }
  .tour-section-title { font-size: 19px; }
  .tour-description p { font-size: 14px; }
  .itinerary-stop { gap: 14px; padding: 16px 0; }
  .stop-number { width: 34px; height: 34px; font-size: 14px; flex-shrink: 0; }
  .stop-content h4 { font-size: 15px; }
  .stop-content p { font-size: 13px; }
  .included-item { font-size: 13px; }
  /* Hide desktop booking card on mobile — sticky bar handles it */
  .booking-sidebar { display: none; }
  /* Show mobile booking bar */
  .mobile-booking-bar { display: flex; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form h2 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; min-height: 50px; }
  .form-group textarea { min-height: 120px; }
  .contact-form .btn { width: 100%; padding: 15px; font-size: 15px; }
  .contact-item { padding-bottom: 18px; margin-bottom: 18px; }
  .contact-item-icon { width: 40px; height: 40px; font-size: 16px; }

  /* About */
  .about-text h2 { font-size: 26px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 20px; margin-top: 20px; }
  .stat-number { font-size: 26px; }
  .team-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 22px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 22px; }
  .blog-card-body { padding: 18px; }
  .blog-card h2 { font-size: 17px; }
  .blog-card-image { height: 190px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item { height: 160px; }

  /* Filter */
  .filter-section { padding: 20px 0; }
  .filter-bar { flex-direction: column; align-items: stretch; gap: 10px; }
  .filter-tabs { flex-wrap: wrap; gap: 6px; }
  .filter-tab { padding: 9px 14px; font-size: 12px; min-height: 40px; }
  .filter-bar select { width: 100%; min-height: 46px; font-size: 15px; }

  /* Footer accordion */
  .site-footer { padding: 40px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; padding-bottom: 0; border-bottom: none; }
  .footer-col { padding: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-col:first-child { padding: 0 0 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-col-toggle { display: flex; }
  .footer-col-head { padding: 16px 0; cursor: pointer; }
  .footer-col-head h4 { margin-bottom: 0; font-size: 14px; }
  .footer-col-body { max-height: 0; }
  .footer-col-body.open { max-height: 400px; }
  .footer-col-body ul { padding: 0 0 16px; }
  .footer-links li { margin-bottom: 14px; }
  .footer-links a { font-size: 15px; min-height: 44px; display: inline-flex; align-items: center; }
  .footer-bottom { padding: 16px; }
  .footer-bottom p { font-size: 12px; }

  /* Floating call button */
  .floating-call { display: flex; }
  /* On pages with sticky bar, push call button up */
  .has-mobile-bar .floating-call { bottom: 90px; }

  /* Back to top */
  .back-to-top { bottom: 90px; right: 16px; width: 40px; height: 40px; font-size: 15px; }
  .back-to-top:not(.visible) { display: none; }
}

/* ================================================
   INLINE GRID OVERRIDES (tour detail optional stops, services how-it-works)
   ================================================ */
@media (max-width: 767px) {
  /* Force all inline 2-col grids to single column */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  /* Force 4-col how-it-works to 2-col */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  /* Force 3-col inline grids to 1-col */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  /* Vehicle options grid */
  .vehicle-options-grid { grid-template-columns: 1fr !important; }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE 419px
   ================================================ */
@media (max-width: 419px) {
  .hero h1 { font-size: 24px; }
  .hero p { font-size: 14px; }
  .section-header h2 { font-size: 22px; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .gallery-item { height: 140px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .filter-tabs { gap: 5px; }
  .filter-tab { padding: 8px 12px; font-size: 11px; }
  .price-block .current { font-size: 22px; }
  .mobile-booking-bar .mbb-current { font-size: 20px; }
  .tour-card-footer .btn { padding: 13px; font-size: 14px; }
  .page-title-bar h1 { font-size: 22px; }
  .page-title-bar { padding: 70px 0 24px; }
  .tour-detail { padding-bottom: 80px; }
  .service-card { padding: 20px 16px; }
  .contact-form h2 { font-size: 20px; }
  /* Footer stays accordion, ensure links big enough */
  .footer-links a { font-size: 15px; }
}

/* ================================================
   GLOBAL BOOKING MODAL
   ================================================ */
.gbf-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.gbf-card {
  background: #fff;
  border-radius: var(--radius);
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow);
}
.gbf-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #aaa;
  transition: color var(--transition);
}
.gbf-close:hover { color: var(--text-heading); }
.gbf-title { margin: 0 0 4px; font-size: 20px; color: var(--text-heading); font-family: 'Poppins', sans-serif; }
.gbf-subtitle { color: var(--text-body); font-size: 13px; margin: 0 0 24px; }
.gbf-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 6px 0 -4px;
}
#global-booking-form { display: grid; gap: 14px; }
.gbf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gbf-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--text-heading); }
.gbf-field .gbf-required { color: #e05; }
.gbf-field input,
.gbf-field select,
.gbf-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.gbf-field input:focus,
.gbf-field select:focus,
.gbf-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(70,138,231,0.1);
}
.gbf-field textarea { resize: vertical; }
.gbf-help { font-size: 12px; color: var(--text-body); margin-top: 4px; }

.gbf-toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.gbf-toggle-row label { font-size: 13px; font-weight: 600; color: var(--text-heading); }
.gbf-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.gbf-switch input { opacity: 0; width: 0; height: 0; }
.gbf-switch .gbf-slider {
  position: absolute; inset: 0; cursor: pointer;
  background: #ddd; border-radius: 24px; transition: background var(--transition);
}
.gbf-switch .gbf-slider::before {
  content: ""; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px;
  background: #fff; border-radius: 50%; transition: transform var(--transition);
}
.gbf-switch input:checked + .gbf-slider { background: var(--primary); }
.gbf-switch input:checked + .gbf-slider::before { transform: translateX(18px); }

.gbf-child-rows { display: grid; gap: 8px; padding-top: 4px; }
.gbf-child-rows[hidden] { display: none; }
.gbf-child-row { display: flex; align-items: center; gap: 12px; }
.gbf-child-row label { flex: 1; font-size: 13px; color: var(--text-body); }
.gbf-child-row select { width: 72px; padding: 7px 8px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; }

.gbf-price-display {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 14px;
  background: #f8f4f0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
}
.gbf-price-base { color: var(--text-body); }
.gbf-price-extra { color: var(--primary); font-weight: 600; }
.gbf-price-total { margin-left: auto; font-size: 16px; font-weight: 700; color: var(--text-heading); }

.gbf-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  text-align: center;
}
.gbf-submit {
  width: 100%;
  padding: 13px;
  font-size: 15px;
  border: none;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.gbf-submit:hover { background: var(--primary-hover); }

@media (max-width: 480px) {
  .gbf-grid-2 { grid-template-columns: 1fr; }
  .gbf-card { padding: 24px; }
}
