/* ========================================
   Chardham Yatra - CSS Styles
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --primary: #e85d2a;
  --primary-light: #fff5f2;
  --primary-dark: #c44a1d;
  --secondary: #f5a623;
  --foreground: #1a2b3c;
  --foreground-muted: #6b7c8d;
  --background: #ffffff;
  --background-alt: #f8f9fa;
  --border: #e5e8eb;
  --white: #ffffff;
  --black: #000000;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-button: 0 4px 12px rgba(232, 93, 42, 0.25);
  
  /* Spacing */
  --radius: 8px;
  --radius-lg: 12px;
  
  /* Fonts */
  --font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Roboto Slab', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* ========================================
   Header Styles
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Top Bar */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.top-bar-link:hover {
  opacity: 0.85;
}

.top-bar-location {
  display: none;
  align-items: center;
  gap: 6px;
}

@media (min-width: 640px) {
  .top-bar-location {
    display: flex;
  }
}

/* Main Header */
.main-header {
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-md);
}

.logo-text h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.logo-text p {
  font-size: 11px;
  color: var(--foreground-muted);
  margin: 0;
}

@media (min-width: 768px) {
  .logo-text h1 {
    font-size: 24px;
  }
}

/* Navigation */
.main-nav {
  display: none;
  gap: 32px;
}

.main-nav a {
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
  position: relative;
}

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

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
  cursor: pointer;
}

.dropdown-trigger:hover {
  color: var(--primary);
}

.dropdown-trigger svg {
  transition: transform 0.2s;
}

.nav-dropdown:hover .dropdown-trigger svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 1000;
  margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu > a,
.dropdown-submenu > .submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  transition: all 0.2s;
}

.dropdown-menu > a:hover,
.dropdown-submenu > .submenu-trigger:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Submenu Styles */
.dropdown-submenu {
  position: relative;
}

.submenu-trigger {
  cursor: pointer;
}

.submenu-content {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 1001;
  margin-left: 4px;
}

.dropdown-submenu:hover > .submenu-content {
  opacity: 1;
  visibility: visible;
}

.submenu-content a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  transition: all 0.2s;
}

.submenu-content a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.header-cta {
  display: none;
}

@media (min-width: 640px) {
  .header-cta {
    display: inline-flex;
  }
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}

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

.btn-outline svg {
  transition: transform 0.2s;
}

.btn-outline:hover svg {
  transform: translateX(4px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--white);
  color: var(--foreground);
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-white:hover {
  background: var(--background-alt);
}

/* ========================================
   Page Hero
   ======================================== */
.page-hero {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.92;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  animation: fadeIn 0.5s ease-out;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 0.5s ease-out 0.1s both;
}

.breadcrumb {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
  animation: fadeIn 0.5s ease-out 0.2s both;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 96px 0;
  }
  
  .hero-content h1 {
    font-size: 44px;
  }
  
  .hero-content p {
    font-size: 20px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Main Content
   ======================================== */
.main-content {
  padding: 40px 0 60px;
  background: var(--background);
}

@media (min-width: 768px) {
  .main-content {
    padding: 60px 0 80px;
  }
}

/* Filters Section */
.filters-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.filters-left h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 4px;
}

.filters-left p {
  color: var(--foreground-muted);
  font-size: 14px;
}

.filters-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  position: relative;
}

.search-box svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--foreground-muted);
}

.search-box input {
  padding: 10px 16px 10px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
  width: 200px;
  transition: all 0.2s;
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 93, 42, 0.1);
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: var(--background-alt);
}

.filter-btn span {
  display: none;
}

@media (min-width: 640px) {
  .filters-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .search-box input {
    width: 250px;
  }
  
  .filter-btn span {
    display: inline;
  }
}

@media (min-width: 768px) {
  .filters-left h2 {
    font-size: 28px;
  }
}

/* ========================================
   Tour Cards
   ======================================== */
.tour-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tour-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

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

/* Tour Card Image */
.tour-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
}

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

.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

/* Tour Card Content */
.tour-card-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.tour-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 12px;
  line-height: 1.4;
}

.tour-card-content h3 a {
  transition: color 0.2s;
}

.tour-card-content h3 a:hover {
  color: var(--primary);
}

/* Tour Meta */
.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--foreground-muted);
  font-size: 13px;
}

/* Tour Description */
.tour-description {
  color: var(--foreground-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tour Actions */
.tour-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 768px) {
  .tour-card {
    flex-direction: row;
  }
  
  .tour-card-image {
    width: 300px;
    height: auto;
    min-height: 220px;
  }
  
  .tour-card-content {
    padding: 24px;
  }
  
  .tour-card-content h3 {
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  .tour-card-image {
    width: 320px;
  }
}

/* ========================================
   Listing Layout with Sidebar
   ======================================== */
.listing-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.listing-main {
  flex: 1;
  min-width: 0;
}

@media (min-width: 1024px) {
  .listing-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .listing-main {
    flex: 1;
  }
  
  .enquiry-sidebar {
    position: sticky;
    top: 100px;
    width: 340px;
    flex-shrink: 0;
  }
}

/* Sidebar Cards */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.sidebar-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
}

.sidebar-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.sidebar-header p {
  font-size: 14px;
  opacity: 0.9;
}

/* Enquiry Form */
.enquiry-form {
  padding: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--foreground);
  background: var(--white);
  transition: all 0.2s;
}

.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(232, 93, 42, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--foreground-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 15px;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 16px 24px;
  background: var(--background-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}

.sidebar-footer p {
  font-size: 13px;
  color: var(--foreground-muted);
  margin-bottom: 8px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

.phone-link:hover {
  color: var(--primary-dark);
}

/* Info Card */
.info-card {
  padding: 20px 24px;
}

.info-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 16px;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--foreground);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  margin-top: 48px;
  text-align: center;
}

.cta-box {
  display: inline-block;
  padding: 40px 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.cta-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-box p {
  opacity: 0.9;
  margin-bottom: 20px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--foreground);
  color: rgba(255, 255, 255, 0.9);
}

.footer .container {
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

/* Footer Brand */
.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
}

.footer-logo span {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.2s;
}

.social-links a:hover {
  background: var(--primary);
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Footer Contact */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--primary);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 16px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Responsive Mobile Nav (if needed)
   ======================================== */
@media (max-width: 767px) {
  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
}

/* ========================================
   About Page Styles
   ======================================== */
.about-section {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.experience-badge .years {
  display: block;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-serif);
}

.experience-badge .text {
  font-size: 13px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--foreground-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-serif);
}

.stat-label {
  font-size: 13px;
  color: var(--foreground-muted);
}

/* Why Choose Section */
.why-choose-section {
  padding: 60px 0;
  background: var(--background-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--foreground-muted);
  font-size: 18px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

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

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--foreground-muted);
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: 60px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.team-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-light);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.team-role {
  display: block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.team-card p {
  font-size: 14px;
  color: var(--foreground-muted);
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 0;
  background: var(--background-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card > p {
  font-size: 15px;
  color: var(--foreground);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--foreground-muted);
}

/* CTA Banner */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-content > p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.2s;
}

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

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.contact-form-wrapper h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--foreground-muted);
  margin-bottom: 32px;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

/* Contact Info */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-list strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-list p,
.contact-list a {
  font-size: 14px;
  color: var(--foreground-muted);
  margin: 0;
}

.contact-list a:hover {
  color: var(--primary);
}

/* WhatsApp Card */
.whatsapp-card {
  background: #25d366;
  color: var(--white);
  text-align: center;
}

.whatsapp-card h3 {
  color: var(--white);
}

.whatsapp-icon {
  margin-bottom: 12px;
}

.whatsapp-card p {
  opacity: 0.9;
  margin-bottom: 16px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  color: #25d366;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-links-large {
  display: flex;
  gap: 12px;
}

.social-links-large a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  transition: all 0.2s;
}

.social-links-large a:hover {
  background: var(--primary);
  color: var(--white);
}

/* Map Section */
.map-section {
  padding: 60px 0;
  background: var(--background-alt);
}

.map-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
  display: block;
}

/* ========================================
   Package Detail Page Styles
   ======================================== */
.package-hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.package-hero .breadcrumb {
  margin-bottom: 20px;
  margin-top: 0;
}

.package-hero h1 {
  font-size: 28px;
}

@media (min-width: 768px) {
  .package-hero h1 {
    font-size: 36px;
  }
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  justify-content: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  opacity: 0.9;
}

.package-detail-section {
  padding: 40px 0 60px;
}

.package-detail-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .package-detail-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .package-main-content {
    flex: 1;
    min-width: 0;
  }
  
  .package-sidebar {
    position: sticky;
    top: 100px;
    width: 360px;
    flex-shrink: 0;
  }
}

/* Package Gallery */
.package-gallery {
  margin-bottom: 32px;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}

.gallery-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.thumb {
  width: 80px;
  height: 60px;
  border-radius: var(--radius);
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.thumb:hover {
  opacity: 0.8;
}

.thumb.active {
  opacity: 1;
  border-color: var(--primary);
}

/* Package Overview */
.package-overview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.package-overview h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.package-overview > p {
  color: var(--foreground-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--foreground);
}

.highlight-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Itinerary */
.package-itinerary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.package-itinerary h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.itinerary-day {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--background-alt);
  cursor: pointer;
}

.day-number {
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

.day-header h3 {
  font-size: 16px;
  margin: 0;
}

.day-content {
  padding: 20px;
}

.day-content p {
  color: var(--foreground-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.day-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.day-details span {
  color: var(--foreground-muted);
}

/* Inclusions/Exclusions */
.package-inclusions {
  margin-bottom: 24px;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .inclusions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.inclusions-card,
.exclusions-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.inclusions-card h3,
.exclusions-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 20px;
}

.inclusions-card h3 svg {
  color: #22c55e;
}

.exclusions-card h3 svg {
  color: #ef4444;
}

.inclusions-card ul,
.exclusions-card ul {
  list-style: none;
}

.inclusions-card li,
.exclusions-card li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--foreground-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.inclusions-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 600;
}

.exclusions-card li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 600;
}

/* Important Notes */
.package-notes {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.package-notes h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .notes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.note-item {
  padding: 20px;
  background: var(--background-alt);
  border-radius: var(--radius);
}

.note-item h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--foreground);
}

.note-item p {
  font-size: 14px;
  color: var(--foreground-muted);
  line-height: 1.6;
}

/* Booking Card */
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.price-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 24px;
  text-align: center;
}

.price-label {
  font-size: 14px;
  opacity: 0.9;
}

.price-amount {
  display: block;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-serif);
  margin: 8px 0;
}

.price-per {
  font-size: 14px;
  opacity: 0.9;
}

.price-options {
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.price-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.price-option:hover {
  background: var(--background-alt);
}

.price-option.active {
  background: var(--primary-light);
  border: 1px solid var(--primary);
}

.price-option strong {
  color: var(--primary);
}

.booking-form {
  padding: 20px;
}

.booking-form .btn-outline {
  margin-top: 12px;
}

.booking-contact {
  padding: 16px 20px;
  background: var(--background-alt);
  text-align: center;
  border-top: 1px solid var(--border);
}

.booking-contact p {
  font-size: 13px;
  color: var(--foreground-muted);
  margin-bottom: 8px;
}

/* Why Book Card */
.why-book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.why-book-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.why-book-card ul {
  list-style: none;
}

.why-book-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.why-book-card li:last-child {
  border-bottom: none;
}

.why-book-card svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Quick Contact Card */
.quick-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.quick-contact-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.quick-contact-card .btn-whatsapp {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  background: var(--background-alt);
  color: var(--foreground);
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.btn-email:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Related Packages */
.related-packages {
  padding: 60px 0;
  background: var(--background-alt);
}

.related-packages h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

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

.package-image {
  position: relative;
  height: 200px;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.package-content {
  padding: 20px;
}

.package-duration {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.package-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.package-content p {
  font-size: 14px;
  color: var(--foreground-muted);
  margin-bottom: 16px;
}

/* ========================================
   Blog Page Styles
   ======================================== */

.blog-article {
  padding: 60px 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr 320px;
  }
}

/* Blog Main Content */
.blog-main {
  max-width: 100%;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--foreground-muted);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-content {
  line-height: 1.8;
}

.blog-content p {
  margin-bottom: 20px;
  color: var(--foreground);
}

.blog-intro {
  font-size: 18px;
  color: var(--foreground);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 28px;
}

.blog-content h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--foreground);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}

.blog-content h3 {
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 16px;
  color: var(--foreground);
}

.blog-content h4 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 12px;
  color: var(--foreground);
}

.blog-list,
.blog-ordered-list {
  margin-bottom: 20px;
  padding-left: 24px;
}

.blog-list li,
.blog-ordered-list li {
  margin-bottom: 10px;
  padding-left: 8px;
}

.blog-list li::marker {
  color: var(--primary);
}

.blog-ordered-list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.blog-ordered-list li {
  counter-increment: item;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-ordered-list li::before {
  content: counter(item);
  background: var(--primary);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 24px 0;
}

@media (min-width: 640px) {
  .info-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.info-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.info-card h4 {
  font-size: 16px;
  margin-bottom: 16px;
  margin-top: 0;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card li {
  margin-bottom: 8px;
  padding-left: 0;
}

.info-card-success {
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
}

.info-card-success h4 {
  color: #2e7d32;
}

.info-card-danger {
  background: #ffebee;
  border: 1px solid #ffcdd2;
}

.info-card-danger h4 {
  color: #c62828;
}

/* Transport Section */
.transport-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 28px 0;
}

@media (min-width: 640px) {
  .transport-section {
    grid-template-columns: 1fr 1fr;
  }
}

.transport-card {
  background: var(--background-alt);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

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

.transport-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 0;
  color: var(--primary);
}

.transport-card p {
  margin-bottom: 12px;
}

.transport-card ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.transport-card li {
  margin-bottom: 6px;
}

/* Tips Grid */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

@media (min-width: 640px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--background-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.tip-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.tip-note {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 500;
  color: var(--primary-dark);
}

/* Benefits List */
.benefits-list li {
  position: relative;
  padding-left: 28px;
  list-style: none;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: bold;
}

/* FAQ Section */
.faq-section {
  margin: 24px 0;
}

.faq-item {
  background: var(--background-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}

.faq-item h4 {
  font-size: 18px;
  margin: 0 0 12px 0;
  color: var(--foreground);
}

.faq-item p {
  margin: 0;
  color: var(--foreground-muted);
}

.faq-item ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
}

.faq-item li {
  margin-bottom: 6px;
}

/* Blog CTA Box */
.blog-cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
  color: var(--white);
}

.blog-cta-box h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--white);
}

.blog-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.blog-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.blog-cta-box .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.blog-cta-box .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.blog-cta-box .btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.blog-cta-box .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Share Section */
.blog-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.blog-share span {
  font-weight: 500;
  color: var(--foreground);
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

.share-btn:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.share-facebook {
  background: #1877f2;
}

.share-twitter {
  background: #1da1f2;
}

.share-whatsapp {
  background: #25d366;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-widget h4 {
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  color: var(--foreground);
}

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

.sidebar-links li {
  margin-bottom: 10px;
}

.sidebar-links a {
  color: var(--foreground-muted);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.sidebar-links a:hover {
  color: var(--primary);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
}

.sidebar-cta h4 {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.sidebar-cta .btn-primary {
  background: var(--white);
  color: var(--primary);
  width: 100%;
  margin-bottom: 10px;
}

.sidebar-cta .btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  width: 100%;
}

.btn-block {
  display: block;
  text-align: center;
}

/* Sidebar Packages */
.sidebar-packages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-package {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--background-alt);
  border-radius: var(--radius);
  transition: background 0.2s;
}

.sidebar-package:hover {
  background: var(--primary-light);
}

.sidebar-package img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius);
}

.sidebar-package h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--foreground);
}

.sidebar-package span {
  font-size: 12px;
  color: var(--foreground-muted);
}