:root {
  --primary: #d32f2f;
  --primary-dark: #b71c1c;
  --primary-light: #ef5350;
  --secondary: #2e7d32;
  --accent: #ff9800;
  --dark: #1a237e;
  --light: #f5f5f5;
  --text-dark: #333;
  --text-light: #666;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== HEADER STYLES ===== */
#ktt-header-section {
  position: relative;
  z-index: 1000;
}

.ktt-header {
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.ktt-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow);
}

.header-top {
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list > li {
  position: relative;
  margin: 0 5px;
}

.nav-list > li > a {
  color: var(--text-dark);
  text-decoration: none;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-list > li > a:hover {
  color: var(--primary);
  background: rgba(211, 47, 47, 0.05);
}

.nav-list > li > a[aria-expanded="true"] {
  color: var(--primary);
  background: rgba(211, 47, 47, 0.1);
}

.navbar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  box-shadow: var(--shadow-hover);
  border-radius: 12px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(0,0,0,0.1);
}

.nav-list > li:hover .navbar-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-dropdown li {
  list-style: none;
}

.navbar-dropdown a {
  display: block;
  padding: 12px 25px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.navbar-dropdown a:hover {
  background: rgba(211, 47, 47, 0.05);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 30px;
}

.nav-mobile {
  display: none;
}

#navbar-toggle {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

#navbar-toggle:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.menu-text {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .nav-mobile {
    display: block;
    z-index: 1002;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .nav-list > li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  .nav-list > li:last-child {
    border-bottom: none;
  }
  
  .nav-list > li > a {
    padding: 18px 0;
    width: 100%;
    font-size: 1.1rem;
    justify-content: space-between;
  }
  
  .navbar-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.02);
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border: none;
    border-left: 3px solid var(--primary-light);
    margin-left: 15px;
  }
  
  .nav-list > li:hover .navbar-dropdown,
  .navbar-dropdown.active {
    max-height: 500px;
  }
  
  .navbar-dropdown a {
    padding: 15px 20px;
    font-size: 0.95rem;
    border-left: none;
  }
  
  .navbar-dropdown a:hover {
    padding-left: 25px;
    border-left: none;
    background: rgba(211, 47, 47, 0.1);
  }
  
  .nav-container {
    padding: 0 15px;
    height: 70px;
  }
  
  .navbar-brand img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .nav-list {
    max-width: 100%;
  }
  
  .nav-container {
    padding: 0 10px;
  }
  
  .navbar-brand img {
    height: 35px;
  }
}

/* Main content offset for fixed header */
.main {
  margin-top: 80px;
}

@media (max-width: 991px) {
  .main {
    margin-top: 70px;
  }
}

/* ===== NEW SEO HEADER STYLES ===== */
.seo-header {
  padding: 40px 0 20px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.seo-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.seo-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.seo-intro {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
  justify-content: center;
}

.trust-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 15px;
  background: var(--light);
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.trust-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.trust-item span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Content Image */
.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.content-image:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-hover);
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: var(--light);
  position: relative;
}

.trust-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.trust-rating .stars {
  font-size: 1.5rem;
  letter-spacing: 5px;
}

/* ===== DURATION COMPARISON ===== */
.duration-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.duration-btn {
  min-width: 70px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
}

.duration-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===== PACKAGE GRID ===== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 35px;
  margin: 50px 0;
}

@media (max-width: 768px) {
  .package-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.package-card {
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  background: white;
  position: relative;
  box-shadow: var(--shadow);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.package-card img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, var(--accent), #ffb74d);
  color: #333;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.discount-badge-absolute {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, var(--secondary), #4caf50);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.price-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.original-price {
  text-decoration: line-through;
  font-size: 1.1rem;
}

.current-price {
  color: var(--primary);
  font-size: 1.7rem;
  font-weight: 800;
  margin: 8px 0;
}

.discount-badge {
  background: linear-gradient(45deg, var(--secondary), #4caf50);
  color: white;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 10px;
}

.mini-itinerary {
  background: rgba(211, 47, 47, 0.05);
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
}

/* ===== INTERNAL LINK SECTIONS ===== */
.kt-heading {
  color: var(--primary);
  border-left: 5px solid var(--primary);
  padding-left: 15px;
  margin: 30px 0 20px;
  font-size: 1.5rem;
}

.itinerary-links {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.link-itinerary {
  margin: 10px 0;
  padding: 12px 20px;
  background: white;
  border-radius: 8px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.link-itinerary:hover {
  border-left-color: var(--primary);
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.link-itinerary a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  display: block;
}

.link-itinerary a:hover {
  color: var(--primary);
}

/* ===== CONTENT EXPANSION ===== */
.content-expansion .content-section {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.season-guide, .expert-guide, .adventure-guide {
  margin-top: 20px;
}

.season-card, .expert-card, .adventure-card {
  padding: 20px;
  background: var(--light);
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
}

.snowfall-alert {
  border-radius: var(--border-radius);
}

.snowfall-alert i {
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== SEASONAL PACKAGES ===== */
.season-package-card {
  background: white;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.season-package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.season-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.season-icon.winter {
  background: linear-gradient(45deg, #2196f3, #03a9f4);
}

.season-icon.spring {
  background: linear-gradient(45deg, #4caf50, #8bc34a);
}

.season-icon.summer {
  background: linear-gradient(45deg, #ff9800, #ffb74d);
}

.season-icon.autumn {
  background: linear-gradient(45deg, #795548, #a1887f);
}

/* ===== ITINERARY CARDS ===== */
.itinerary-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.itinerary-card:hover {
  box-shadow: var(--shadow-hover);
}

.itinerary-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.itinerary-details {
  padding: 30px;
}

.day-item {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.day-item:last-child {
  border-bottom: none;
}

.price-tag {
  text-align: right;
}

.price-tag .original-price {
  display: block;
  text-decoration: line-through;
  font-size: 0.9rem;
  opacity: 0.8;
}

.price-tag .current-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}

.price-tag .discount {
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  display: inline-block;
  margin-top: 5px;
}

/* ===== FAMILY TOUR CARDS ===== */
.family-tour-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

.family-tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.family-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== PACKAGE TYPE CARDS ===== */
.package-type-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
  height: 100%;
}

.package-type-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.package-type-card i {
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== CITY CARDS ===== */
.city-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* ===== DESTINATION CARDS ===== */
.destination-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  background: white;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.destination-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.card-body {
  padding: 20px;
}

/* ===== REVIEW CARDS ===== */
.review-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.review-stars {
  color: #ffc107;
  margin-bottom: 15px;
}

/* ===== FAQ ACCORDION ===== */
.accordion-button {
  font-weight: 600;
  background: white;
  border: none;
  padding: 20px;
}

.accordion-button:not(.collapsed) {
  background: rgba(211, 47, 47, 0.05);
  color: var(--primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,.125);
}

.accordion-item {
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-body {
  padding: 20px;
  background: var(--light);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--dark) 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: cover;
}

.cta-section .btn-light {
  background: white;
  color: var(--primary);
  font-weight: 600;
}

.cta-section .btn-outline-light {
  border: 2px solid white;
  color: white;
  font-weight: 600;
}

.cta-section .btn-outline-light:hover {
  background: white;
  color: var(--primary);
}

/* ===== AUDIENCE FIT ===== */
.audience-card {
  background: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  height: 100%;
  border-top: 4px solid var(--primary);
}

.audience-card ul {
  list-style: none;
  padding-left: 0;
}

.audience-card li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

.audience-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* ===== MICRO ITINERARIES ===== */
.micro-itinerary {
  background: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}

.micro-itinerary ul {
  list-style: none;
  padding-left: 0;
}

.micro-itinerary li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  position: relative;
  padding-left: 30px;
}

.micro-itinerary li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* ===== TRANSPARENT INCLUSIONS TABLE ===== */
.table th {
  font-weight: 600;
  padding: 15px;
}

.table td {
  padding: 15px;
  vertical-align: middle;
}

/* ===== KASHMIR BY MONTH ===== */
#kashmir-by-month ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

#kashmir-by-month ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.5rem;
}

/* ===== INSIDER TIPS ===== */
#insider-tips ul {
  list-style: none;
  padding-left: 0;
}

#insider-tips li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 35px;
}

#insider-tips li:before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* ===== STORY CARDS ===== */
.story-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 25px;
  border-left: 5px solid var(--primary);
  position: relative;
}

.story-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  color: rgba(211, 47, 47, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ===== BUTTON STYLES ===== */
.btn-primary {
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  border: none;
  border-radius: 30px;
  padding: 14px 35px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
  background: linear-gradient(45deg, var(--primary-dark), var(--primary));
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 30px;
  padding: 12px 35px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

/* ===== FORM STYLES ===== */
.quick-enquiry-form {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: none;
}

.form-control, .form-select {
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(211, 47, 47, 0.25);
}

/* ===== FILTER OPTIONS ===== */
.filter-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 14px 28px;
  border: 2px solid var(--primary);
  background: white;
  color: var(--primary);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

/* ===== STICKY CONTACT BAR ===== */
.sticky-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-contact-bar.visible {
  transform: translateY(0);
}

.sticky-contact-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.sticky-contact-bar .contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-contact-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.whatsapp-button, .call-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.whatsapp-button {
  background: linear-gradient(45deg, #25D366, #128C7E);
}

.call-button {
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
}

.whatsapp-button:hover, .call-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-button:after, .call-button:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.whatsapp-button:hover:after, .call-button:hover:after {
  transform: translateX(100%);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .seo-header {
    padding: 30px 0 15px;
  }
  
  .seo-header h1 {
    font-size: 2rem;
  }
  
  .seo-header h2 {
    font-size: 1.3rem;
  }
  
  .trust-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .trust-item {
    min-width: 100%;
  }
  
  .package-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    padding: 60px 0;
    margin: 40px 0;
  }
  
  .floating-contact-buttons {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button, .call-button {
    width: 55px;
    height: 55px;
  }
  
  .sticky-contact-bar .container {
    flex-direction: column;
    text-align: center;
  }
  
  .sticky-contact-bar .contact-info {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .filter-options {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .duration-tabs {
    gap: 5px;
  }
  
  .duration-btn {
    min-width: 60px;
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  
  .quick-enquiry-form {
    padding: 20px !important;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .ktt-header,
  .sticky-contact-bar,
  .floating-contact-buttons,
  .hero-badge,
  .filter-options,
  .btn {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .seo-header {
    background: none;
    color: #000;
    padding: 20px 0;
  }
  
  .package-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  a {
    color: #000;
    text-decoration: none;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 0.9em;
    font-weight: normal;
  }
}

