/* Modern Travel Website Design - Inspired by Mountain Heights */
:root {
    /* Primary Colors - Mountain Theme */
    --primary-color: #2c3e50;
    --primary-dark: #1a252f;
    --primary-light: #34495e;
    
    /* Accent Colors */
    --accent-color: #e67e22;
    --accent-dark: #d35400;
    --accent-light: #f39c12;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    
    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Border and Shadows */
    --border: 1px solid var(--medium-gray);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 2rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Typography */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-secondary: 'Playfair Display', Georgia, serif;
    
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    --line-height-loose: 2;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--accent-dark);
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-sm {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-sm);
}

/* Cards */
.card {
    background: var(--bg-white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Section */
.section-pad {
    padding: var(--spacing-xxl) 0;
}

/* Page Hero */
.page-hero {
    background: var(--bg-gradient);
    color: var(--white);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: 0;
}

/* Blog Detail Page Styles */
.blog-detail-card {
    background: var(--bg-white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.blog-detail-card:hover {
    box-shadow: var(--shadow-xl);
}

.blog-detail-cover {
    width: 100%;
    overflow: hidden;
    max-height: 400px;
}

.blog-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-detail-card:hover .blog-detail-cover img {
    transform: scale(1.05);
}

.blog-detail-body {
    padding: var(--spacing-xl);
}

.blog-detail-body .richtext {
    line-height: var(--line-height-relaxed);
    color: var(--text-dark);
}

.blog-detail-body .richtext h1,
.blog-detail-body .richtext h2,
.blog-detail-body .richtext h3,
.blog-detail-body .richtext h4,
.blog-detail-body .richtext h5,
.blog-detail-body .richtext h6 {
    color: var(--primary-color);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-bold);
}

.blog-detail-body .richtext h1 { font-size: var(--font-size-3xl); }
.blog-detail-body .richtext h2 { font-size: var(--font-size-2xl); }
.blog-detail-body .richtext h3 { font-size: var(--font-size-xl); }
.blog-detail-body .richtext h4 { font-size: var(--font-size-lg); }
.blog-detail-body .richtext h5 { font-size: var(--font-size-base); }
.blog-detail-body .richtext h6 { font-size: var(--font-size-sm); }

.blog-detail-body .richtext p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
    font-size: var(--font-size-base);
}

.blog-detail-body .richtext ul,
.blog-detail-body .richtext ol {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.blog-detail-body .richtext li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-size: var(--font-size-base);
}

.blog-detail-body .richtext strong {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
}

.blog-detail-body .richtext a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: var(--font-weight-medium);
}

.blog-detail-body .richtext a:hover {
    color: var(--accent-dark);
}

/* Sidebar Styles */
.sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
    transition: var(--transition-normal);
}

.sidebar-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.sidebar-card h3 {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xl);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.related-post-item,
.latest-post-item {
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--medium-gray);
    margin-bottom: var(--spacing-md);
    transition: var(--transition-fast);
}

.related-post-item:last-child,
.latest-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.related-post-item:hover,
.latest-post-item:hover {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding-left: var(--spacing-sm);
}

.related-post-item h6,
.latest-post-item h6 {
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
}

.related-post-item h6 a,
.latest-post-item h6 a {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.related-post-item h6 a:hover,
.latest-post-item h6 a:hover {
    color: var(--accent-color);
}

.contact-info {
    font-size: var(--font-size-sm);
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
    margin-right: var(--spacing-sm);
}

.contact-info a {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Blog Page Styles */
.news-card {
    background: var(--bg-white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    height: 100%;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.news-card:hover::before {
    transform: scaleY(1);
}

.news-date {
    color: var(--accent-color);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.news-date i {
    margin-right: var(--spacing-xs);
}

.news-card h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-md);
}

.news-card h3 a {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.news-card h3 a:hover {
    color: var(--accent-color);
}

.news-card p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
}

/* Blog Cards */
.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.blog-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
}

.blog-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition-normal);
}

.blog-card:hover .blog-thumb::before {
    opacity: 1;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-body {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--accent-color);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.blog-title a {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.blog-title a:hover {
    color: var(--accent-color);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-md);
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .page-title {
        font-size: var(--font-size-2xl);
    }
    
    .page-subtitle {
        font-size: var(--font-size-base);
    }
    
    .blog-detail-body {
        padding: var(--spacing-lg);
    }
    
    .sidebar-card {
        padding: var(--spacing-md);
    }
    
    .news-card {
        padding: var(--spacing-md);
    }
    
    .blog-body {
        padding: var(--spacing-md);
    }
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-lg);
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h5 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
    color: var(--white);
}

.gallery-content p {
    font-size: var(--font-size-sm);
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Page Styles */
.blog-detail-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.blog-detail-cover {
  width: 100%;
  overflow: hidden;
}

.blog-detail-cover img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-detail-body {
  padding: 32px;
}

.blog-detail-body .richtext {
  line-height: 1.8;
  color: var(--dark-color);
}

.blog-detail-body .richtext h1,
.blog-detail-body .richtext h2,
.blog-detail-body .richtext h3,
.blog-detail-body .richtext h4,
.blog-detail-body .richtext h5,
.blog-detail-body .richtext h6 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-detail-body .richtext h1 { font-size: 2rem; }
.blog-detail-body .richtext h2 { font-size: 1.75rem; }
.blog-detail-body .richtext h3 { font-size: 1.5rem; }
.blog-detail-body .richtext h4 { font-size: 1.25rem; }
.blog-detail-body .richtext h5 { font-size: 1.1rem; }
.blog-detail-body .richtext h6 { font-size: 1rem; }

.blog-detail-body .richtext p {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.blog-detail-body .richtext ul,
.blog-detail-body .richtext ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.blog-detail-body .richtext li {
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.blog-detail-body .richtext strong {
  color: var(--primary-color);
  font-weight: 600;
}

.blog-detail-body .richtext a {
  color: var(--accent-color);
  text-decoration: underline;
}

.blog-detail-body .richtext a:hover {
  color: var(--primary-color);
}

/* Sidebar Styles */
.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sidebar-card h3 {
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.related-post-item,
.latest-post-item {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.related-post-item:last-child,
.latest-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.related-post-item h6,
.latest-post-item h6 {
  font-weight: 500;
  line-height: 1.4;
}

.related-post-item h6 a,
.latest-post-item h6 a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.related-post-item h6 a:hover,
.latest-post-item h6 a:hover {
  color: var(--accent-color);
}

.contact-info {
  font-size: 14px;
}

.contact-info p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: var(--accent-color);
  width: 20px;
}

.contact-info a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--accent-color);
}

/* Blog Page Styles */
.news-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: var(--accent-color);
}

.news-date {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.news-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.news-card h3 a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.news-card h3 a:hover {
  color: var(--accent-color);
}

.news-card p {
  color: var(--secondary-color);
  font-size: 14px;
  line-height: 1.6;
}

/* Blog Cards */
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: var(--accent-color);
}

.blog-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}

.blog-title a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--accent-color);
}

.blog-excerpt {
  color: var(--secondary-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* Contact Page Styles */
.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a4f2c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff9d5c 100%);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.contact-text h6 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

.contact-text p {
  font-size: 15px;
  line-height: 1.5;
}

.contact-text a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: var(--accent-color);
}

.business-hours {
  border-left: 4px solid var(--accent-color);
  background: linear-gradient(135deg, #fff9f0 0%, #fef6e9 100%);
}

.business-hours h6 {
  color: var(--primary-color);
  font-weight: 600;
}

.footer-map iframe {
  width: 100%;
  height: 250px;
  border: none;
}

.map-container h6 {
  color: var(--primary-color);
  font-weight: 600;
}

/* Office Cards */
.office-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: var(--accent-color);
}

.office-card h6 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 16px;
}

.office-card p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.office-card i {
  color: var(--accent-color);
  width: 16px;
}

.office-card a {
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.office-card a:hover {
  color: var(--accent-color);
}

/* Contact Category Cards */
.contact-category-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.contact-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-category-card h6 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 15px;
}

.contact-category-card p {
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-category-card i {
  color: var(--accent-color);
  width: 16px;
}

.contact-category-card a {
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-category-card a:hover {
  color: var(--accent-color);
}

/* Global Styles - Himalayan Theme */
:root {
    --snow-white: #ffffff;
    --pine-green: #1e3f20;
    --sky-blue: #87ceeb;
    --temple-saffron: #ff8c42;
    --mountain-gray: #6b7b8c;
    --stone-bg: #f5f2e9;
    --spiritual-gold: #d4af37;
    --primary-color: var(--pine-green);
    --secondary-color: var(--mountain-gray);
    --light-color: var(--stone-bg);
    --dark-color: var(--pine-green);
    --accent-color: var(--temple-saffron);
    --mint: var(--sky-blue);
    --success-color: #28a745;
    --warning-color: var(--temple-saffron);
    --danger-color: #dc3545;
    --card: #ffffff;
    --border: rgba(30, 63, 32, 0.10);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 56px; /* For fixed navbar */
    background: var(--stone-bg);
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAiIHZpZXdCb3g9IjAgMCAxNDQwIDMyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMTYwTDQ4IDE5MkwyNDAgNjRMMzM2IDE5Mkw0ODAgNjRMNTc2IDE5Mkw3MjAgNjRMODE2IDE5Mkw5NjAgNjRMOTc2IDEyOEwxMDI0IDY0TDEyMDAgMTI4TDEzNDQgMEwxNDQwIDEyOEwxNDQwIDMyMEgxMjAwSDAwVjE2MFoiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPgo8L3N2Zz4=');
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, .page-title, .section-title {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.2px;
    color: var(--pine-green);
    font-weight: 600;
}

a { text-decoration: none; }

/* Topbar - Himalayan Theme */
.topbar {
    background: linear-gradient(135deg, var(--pine-green) 0%, #1a3320 100%);
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255, 140, 66, 0.2);
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
}
.topbar:before {
    content: 'ॐ';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Playfair Display', serif;
}
.topbar a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s ease;
}
.topbar a:hover { 
    color: var(--temple-saffron);
    text-shadow: 0 0 10px rgba(255, 140, 66, 0.5);
}

/* Navigation - Himalayan Theme */
.navbar {
    box-shadow: 0 4px 25px rgba(30, 63, 32, 0.15);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(30, 63, 32, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 30px rgba(30, 63, 32, 0.2);
}

.main-nav .nav-link {
    color: var(--pine-green);
    font-weight: 400;
    position: relative;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 0px;
    font-size: 15px;
}

.main-nav .nav-link:hover {
    color: var(--temple-saffron);
    background: rgba(255, 140, 66, 0.1);
    transform: translateY(-2px);
}

.site-logo {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(30, 63, 32, 0.2));
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--pine-green);
    text-decoration: none;
    position: relative;
    padding-left: 40px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--temple-saffron);
    transform: scale(1.05);
}

.navbar-brand:before {
    content: '⛰';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--temple-saffron);
    transition: all 0.3s ease;
}

.navbar-brand:hover:before {
    transform: translateY(-50%) rotate(10deg);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem .7rem !important;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover { 
    background: linear-gradient(135deg, #128C7E 0%, #0D5F3F 100%);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Call Button */
.btn-call {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border: none;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-call:hover::before {
    left: 100%;
}

.btn-call:hover { 
    background: linear-gradient(135deg, #F7931E 0%, #E64A19 100%);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
}

/* Hero Section (Home) - Himalayan Theme */
.hero-section {
    background: linear-gradient(rgba(207, 224, 208, 0.9), rgba(30, 63, 32, 0.7)), 
                url('himalayan-mountain.jpg') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 110px 0 70px;
    overflow: hidden;
}
.hero-section:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(218, 236, 219, 0.3), rgba(30, 63, 32, 0.2));
}
.hero-section .container { position: relative; z-index: 1; }

.hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 28px;
    color: #fff;
}
.hero-kicker {
    display: inline-block;
    background: rgba(255, 140, 66, 0.18);
    border: 1px solid rgba(255, 140, 66, 0.35);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.hero-title {
    font-weight: 800;
    line-height: 1.1;
    font-size: clamp(28px, 3.2vw, 44px);
    margin: 0 0 10px;
}
.hero-subtitle {
    opacity: 0.95;
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #000;
}
.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.hero-badge {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.92rem;
}

.quick-enquiry {
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.55);
}

/* Page hero - Himalayan Theme */
.page-hero {
    padding: 64px 0;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.12), rgba(30, 63, 32, 0.08));
    border-bottom: 1px solid var(--border);
    position: relative;
}
.page-hero.compact { padding: 46px 0; }
.page-title { font-weight: 800; color: var(--pine-green); margin-bottom: 6px; }
.page-subtitle { color: rgba(30, 63, 32, 0.75); margin: 0; }
.page-breadcrumbs { margin-top: 10px; color: rgba(30, 63, 32, 0.7); font-size: 0.92rem; }
.page-breadcrumbs a { color: var(--temple-saffron); }

/* Sections - Himalayan Theme */
.section-pad { padding: 36px 0; }
.section-muted { background: rgba(245, 242, 233, 0.5); }
.section-head { text-align: center; margin-bottom: 22px; }
.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-head h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--temple-saffron);
    border-radius: 2px;
}
.section-title { font-weight: 800; color: var(--secondary-color); }
.section-subtitle { color: rgba(15,23,42,0.7); margin: 0; }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://source.unsplash.com/1920x1080/?travel') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Section Styling */
.section-title {
    position: relative;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Tour Cards - Himalayan Theme */
.tour-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pkg-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(30, 63, 32, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(30, 63, 32, 0.10); }

.pkg-thumb { display:block; position: relative; }
.pkg-thumb img { width: 100%; height: 210px; object-fit: cover; background: #eef2ff; }
.pkg-tag {
    position: absolute;
    left: 12px;
    top: 12px;
    background: rgba(255, 140, 66, 0.95);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 999px;
}

.pkg-body { padding: 16px; }
.pkg-title { font-size: 1.05rem; font-weight: 800; margin: 0 0 8px; }
.pkg-title a { color: var(--pine-green); }
.pkg-title a:hover { color: var(--temple-saffron); }

/* Package Rating */
.pkg-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}
.pkg-rating .stars {
    color: #ffd700;
    font-size: 0.9rem;
}
.pkg-rating .rating-value {
    font-weight: 700;
    color: var(--pine-green);
}
.pkg-rating .reviews {
    color: #666;
    font-size: 0.85rem;
}

.pkg-duration {
    color: var(--temple-saffron);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.pkg-meta { display:flex; gap: 14px; flex-wrap: wrap; color: rgba(30, 63, 32, 0.72); font-weight: 600; font-size: 0.92rem; }
.pkg-desc { margin: 10px 0 0; color: rgba(30, 63, 32, 0.72); min-height: 44px; }
.pkg-actions { margin-top: 14px; display:flex; gap: 8px; }

.filter-bar { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 14px; box-shadow: 0 10px 24px rgba(30, 63, 32, 0.05); }

/* Detail - Himalayan Theme */
.detail-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 14px 30px rgba(30, 63, 32, 0.06); }
.detail-cover img { width: 100%; height: 360px; object-fit: cover; background: var(--stone-bg); }
.detail-body { padding: 18px; }

.detail-gallery { display:flex; gap: 10px; padding: 12px 18px; overflow-x: auto; border-top: 1px solid var(--border); }
.detail-thumb img { height: 86px; width: 120px; object-fit: cover; border-radius: 10px; border: 1px solid var(--border); }

.spec { border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; background: #fff; }
.spec span { display:block; font-size: 0.85rem; color: rgba(30, 63, 32, 0.65); }
.spec strong { display:block; font-size: 1rem; color: var(--pine-green); }

.itin { margin-top: 10px; }
.itin-item { display:flex; gap: 12px; padding: 12px; border: 1px solid var(--border); border-radius: 14px; margin-bottom: 10px; background: #fff; }
.itin-day { min-width: 74px; font-weight: 800; color: var(--temple-saffron); }
.itin-title { font-weight: 800; color: var(--pine-green); }
.itin-desc { color: rgba(15,23,42,0.75); }

.info-box { border: 1px solid var(--border); border-radius: 16px; padding: 14px; background: #fff; height: 100%; }
.richtext p, .richtext li { color: rgba(15,23,42,0.75); }

.sticky-side { position: sticky; top: 92px; }
.side-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 16px; box-shadow: 0 14px 30px rgba(2,6,23,0.06); }
.side-price .label { color: rgba(15,23,42,0.7); font-weight: 600; }
.side-price .value { font-size: 1.8rem; font-weight: 900; color: var(--secondary-color); }
.dates { margin: 10px 0 0; padding-left: 18px; color: rgba(15,23,42,0.75); }

/* Fixed departures block */
.fixed-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 16px; box-shadow: 0 14px 30px rgba(2,6,23,0.06); }
.fixed-item { display:flex; gap: 12px; padding: 10px 0; border-top: 1px dashed rgba(15,23,42,0.14); }
.fixed-item:first-child { border-top: 0; }
.fixed-left img { width: 76px; height: 60px; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); }
.fixed-title a { font-weight: 800; color: var(--secondary-color); }
.fixed-meta { color: rgba(15,23,42,0.7); font-weight: 600; font-size: 0.92rem; }

/* Why grid */
.why-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-item { display:flex; gap: 10px; padding: 12px; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
.why-item i { font-size: 1.2rem; color: var(--accent-color); margin-top: 2px; }
.why-item h5 { font-size: 1rem; margin: 0; font-weight: 800; color: var(--secondary-color); }
.why-item p { margin: 4px 0 0; color: rgba(15,23,42,0.72); font-size: 0.92rem; }

/* Forms */
.form-card { background:#fff; border: 1px solid var(--border); border-radius: 18px; padding: 16px; box-shadow: 0 14px 30px rgba(2,6,23,0.06); }
.img-frame { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); background: #fff; box-shadow: 0 14px 30px rgba(2,6,23,0.06); }
.about-card { background:#fff; border:1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: 0 14px 30px rgba(2,6,23,0.06); }
.about-highlights { display:grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.about-hi { display:flex; gap: 10px; align-items:center; border: 1px solid var(--border); border-radius: 14px; padding: 10px 12px; }
.about-hi i { color: var(--primary-color); }

/* Blogs */
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 14px 30px rgba(2,6,23,0.06); }
.blog-thumb img { width: 100%; height: 210px; object-fit: cover; background: #eef2ff; }
.blog-body { padding: 16px; }
.blog-title { font-weight: 900; font-size: 1.05rem; margin: 6px 0 8px; }
.blog-title a { color: var(--secondary-color); }
.blog-date { color: rgba(15,23,42,0.68); font-weight: 600; font-size: 0.9rem; }
.blog-excerpt { color: rgba(15,23,42,0.72); }

/* Footer */
.footer {
    background: #0b1220;
    color: rgba(255,255,255,0.9);
}
.footer-title { font-weight: 800; margin-bottom: 12px; color: #fff; }
.footer-text { color: rgba(255,255,255,0.82); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.85); }
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { margin-bottom: 10px; color: rgba(255,255,255,0.86); }
.footer-contact a { color: rgba(255,255,255,0.92); }
.footer-contact i { width: 20px; color: var(--mint); }
.footer-social a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    color: #fff;
    margin-right: 8px;
}
.footer-social a:hover { background: rgba(14,165,233,0.55); }
.footer-map iframe { border-radius: 14px; overflow: hidden; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); }

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #16a34a;
    color: #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 12px 26px rgba(0,0,0,0.25);
    z-index: 1200;
}
.floating-whatsapp:hover { color:#fff; background:#15803d; }

/* Category pills */
.cat-pill {
    display:flex;
    align-items:center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--secondary-color);
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(2,6,23,0.05);
}
.cat-pill i { color: var(--accent-color); }
.cat-pill:hover { border-color: rgba(29,78,216,0.25); }
.cat-pill.active { background: rgba(14,165,233,0.10); border-color: rgba(14,165,233,0.35); }

/* Package detail hero */
.pkg-hero {
    position: relative;
    padding: 76px 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.pkg-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,6,23,0.78), rgba(2,6,23,0.35));
}
.pkg-hero .container { position: relative; z-index: 2; }
.pkg-hero .pkg-hero-card {
    max-width: 860px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 20px;
    color: #fff;
}
.pkg-hero .pkg-title { font-size: clamp(26px, 3.3vw, 44px); color: #fff; margin-bottom: 6px; }
.pkg-hero .pkg-sub { color: rgba(255,255,255,0.92); margin: 0; }
.pkg-hero-meta { display:flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.pkg-chip {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pkg-snow {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Gallery grid */
.pkg-gallery-grid {
    display:grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 10px;
}
.pkg-gallery-main img { width: 100%; height: 380px; object-fit: cover; border-radius: 18px; border: 1px solid var(--border); }
.pkg-gallery-side { display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pkg-gallery-side img { width: 100%; height: 185px; object-fit: cover; border-radius: 18px; border: 1px solid var(--border); }
.pkg-gallery-grid a { position: relative; display:block; }
.pkg-gallery-grid a:after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(2,6,23,0.55);
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: all .2s ease;
}
.pkg-gallery-grid a:hover:after { opacity: 1; transform: translateY(0); }

/* Tabs */
.pkg-tabs {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(2,6,23,0.06);
}
.pkg-tabs .nav {
    background: linear-gradient(135deg, rgba(14,165,233,0.10), rgba(249,115,22,0.08));
    padding: 10px;
    gap: 8px;
}
.pkg-tabs .nav-link {
    border: 1px solid rgba(15,23,42,0.10);
    border-radius: 999px;
    font-weight: 800;
    color: var(--secondary-color);
    background: rgba(255,255,255,0.75);
}
.pkg-tabs .nav-link.active {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.pkg-tabs .tab-pane { padding: 18px; }

/* Sticky enquiry card */
.enq-sticky {
    position: sticky;
    top: 92px;
}
.enq-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 14px 30px rgba(2,6,23,0.06);
}
.enq-card .price-big { font-size: 1.7rem; font-weight: 900; color: var(--secondary-color); }

/* Lightbox */
.lb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,0.80);
    display: none;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lb-overlay.active { display:flex; }
.lb-box {
    max-width: 1080px;
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    overflow: hidden;
}
.lb-box img { width: 100%; height: auto; display:block; }
.lb-close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor: pointer;
    z-index: 2001;
}

@media (max-width: 992px) {
    .pkg-gallery-grid { grid-template-columns: 1fr; }
    .pkg-gallery-main img { height: 260px; }
    .pkg-gallery-side img { height: 170px; }
}

/* Admin */
.admin-login-body { background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(29,78,216,0.10)); min-height: 100vh; display:flex; align-items:center; }
.admin-login-card { background:#fff; border: 1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: 0 18px 40px rgba(2,6,23,0.12); }

.admin-body { background: #f8fafc; padding-top: 0; }
.admin-topbar { background: #0b1220; color: #fff; }
.admin-brand, .admin-link { color: #fff; font-weight: 800; text-decoration:none; }
.admin-link { font-weight: 600; opacity: 0.9; }
.admin-link:hover { opacity: 1; }
.admin-wrap { display:flex; min-height: calc(100vh - 48px); }
.admin-sidebar {
    width: 260px;
    background: #0f172a;
    padding: 16px;
}
.admin-nav { display:flex; gap: 10px; align-items:center; padding: 10px 12px; border-radius: 12px; color: rgba(255,255,255,0.92); text-decoration:none; margin-bottom: 8px; }
.admin-nav:hover { background: rgba(255,255,255,0.10); color: #fff; }
.admin-main { flex: 1; }

.stat-card { background:#fff; border: 1px solid var(--border); border-radius: 16px; padding: 16px; display:flex; gap: 12px; align-items:center; box-shadow: 0 12px 24px rgba(2,6,23,0.06); }
.stat-icon { width: 44px; height: 44px; border-radius: 14px; background: rgba(14,165,233,0.14); color: var(--primary-color); display:flex; align-items:center; justify-content:center; font-size: 1.1rem; }
.stat-label { color: rgba(15,23,42,0.65); font-weight: 700; font-size: 0.92rem; }
.stat-value { font-weight: 900; font-size: 1.6rem; color: var(--secondary-color); }

@media (max-width: 992px) {
    .why-grid { grid-template-columns: 1fr; }
    .admin-sidebar { width: 220px; }
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tour-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.tour-card .card-body {
    padding: 1.5rem;
}

.tour-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Feature Boxes */
.feature-box {
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(--primary-color);
}

/* Contact Form */
.form-control {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Social Icons */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--temple-saffron);
}

/* ===== Clean Gallery ===== */
.clean-gallery {
  padding: 80px 0;
  background: #f8f9fa;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f3d2b;
  margin-bottom: 15px;
}

.gallery-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 61, 43, 0.9) 0%, rgba(31, 61, 43, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.gallery-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

/* Gallery Actions */
.gallery-actions {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  background: linear-gradient(135deg, #ff7a3d 0%, #ff6220 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 122, 61, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.load-more-btn:hover {
  background: linear-gradient(135deg, #ff6220 0%, #e64a19 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 122, 61, 0.4);
}

.load-more-btn i {
  transition: transform 0.3s ease;
}

.load-more-btn:hover i {
  transform: translateX(5px);
}

/* Clean Gallery Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .gallery-title {
    font-size: 42px;
  }
  
  .gallery-image {
    height: 220px;
  }
  
  .gallery-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .gallery-title {
    font-size: 36px;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .gallery-content h3 {
    font-size: 16px;
  }
  
  .gallery-content p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-title {
    font-size: 32px;
  }
  
  .gallery-image {
    height: 180px;
  }
  
  .gallery-content h3 {
    font-size: 15px;
  }
  
  .gallery-content p {
    font-size: 12px;
  }
}

/* Mobile Navigation Improvements */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(255, 140, 66, 0.1);
}

.navbar-toggler-icon {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--pine-green);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: var(--pine-green);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after {
  background: var(--temple-saffron);
}

/* Mobile Navigation Menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 30px rgba(30, 63, 32, 0.15);
  }
  
  .navbar-nav {
    padding: 10px 0;
  }
  
  .navbar-nav .nav-item {
    margin-bottom: 8px;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    display: block;
    text-align: center;
  }
  
  .navbar-nav .nav-item.dropdown .nav-link {
    text-align: left;
  }
  
  .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 63, 32, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
  }
  
  .dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 4px;
    margin: 2px 8px;
  }
  
  .dropdown-item:hover {
    background: rgba(255, 140, 66, 0.1);
    color: var(--temple-saffron);
  }
  
  .site-logo {
    height: 36px;
  }
  
  .btn-whatsapp,
  .btn-call {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .dropdown-item {
    font-size: 13px;
    padding: 8px 12px;
  }
  
  .site-logo {
    height: 32px;
  }
  
  .btn-whatsapp,
  .btn-call {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/* Footer Mobile Improvements */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer .row > div {
    margin-bottom: 30px;
  }
  
  .footer-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  .footer-links {
    margin-bottom: 20px;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    font-size: 14px;
    padding: 4px 0;
    display: block;
  }
  
  .footer-contact li {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .footer-social a {
    width: 44px;
    height: 44px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 20px 0 0;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer .row > div {
    margin-bottom: 25px;
  }
  
  .footer-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .footer-contact li {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }
  
  .footer-bottom {
    font-size: 12px;
    padding: 15px 0 0;
  }
}

/* Footer - Himalayan Theme */
.footer {
    background: var(--pine-green);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDE0NDAgNjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wIDYwTDQ4IDM2TDI0MCA1NkMzMzYgMzZMNDgwIDU2TDU3NiAzNkw3MjAgNTZMODE2IDM2TDk2MCA1NkwxMDI0IDM2TDEyMDAgNTZMMTM0NCAzNkwxNDQwIDU2VjYwSDBWNjBaIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjEiLz4KPC9zdmc+');
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-content {
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.footer h4 {
    color: white;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--temple-saffron);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--temple-saffron);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

/* Snow Animation Container */
.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    user-select: none;
    cursor: default;
    animation: snowfall linear infinite;
    opacity: 0.8;
}

@keyframes snowfall {
    from {
        transform: translateY(-100px);
    }
    to {
        transform: translateY(calc(100vh + 100px));
    }
}

/* Packages Page - Himalayan Theme */
.packages-hero {
    background: linear-gradient(135deg, rgba(30, 63, 32, 0.9), rgba(30, 63, 32, 0.7)), 
                url('himalayan-mountain.jpg') no-repeat center center/cover;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.packages-hero .hero-content {
    color: white;
    padding-right: 40px;
}

.packages-hero .page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.packages-hero .page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--temple-saffron);
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-packages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.featured-number {
    background: var(--temple-saffron);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.featured-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pine-green);
}

.featured-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--mountain-gray);
}

.featured-link {
    background: var(--pine-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.featured-link:hover {
    background: var(--temple-saffron);
    color: white;
}

/* Enhanced Package Cards */
.pkg-thumb-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.pkg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 63, 32, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pkg-thumb-wrapper:hover .pkg-overlay {
    opacity: 1;
}

.pkg-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.pkg-thumb-wrapper:hover .pkg-overlay i {
    transform: scale(1);
}

.pkg-header {
    margin-bottom: 1rem;
}

.pkg-route {
    color: var(--mountain-gray);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pkg-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pkg-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.85rem;
    color: var(--mountain-gray);
    font-weight: 500;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--temple-saffron);
}

/* Why Choose Us Cards */
.why-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(30, 63, 32, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 63, 32, 0.12);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--temple-saffron), #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.why-card h4 {
    color: var(--pine-green);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.why-card p {
    color: var(--mountain-gray);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Filter Bar */
.filter-bar {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(30, 63, 32, 0.06);
}

.input-group {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.input-group .form-control {
    border-right: none;
}

.input-group .btn {
    border-left: none;
    border-color: var(--border);
}

/* Enhanced Pagination */
.pagination .page-link {
    color: var(--pine-green);
    border: 1px solid var(--border);
    margin: 0 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--temple-saffron);
    border-color: var(--temple-saffron);
    color: white;
}

.pagination .page-item.active .page-link {
    background: var(--pine-green);
    border-color: var(--pine-green);
    color: white;
}

/* Responsive Adjustments for Packages Page */
@media (max-width: 768px) {
    .packages-hero {
        padding: 60px 0 40px;
    }
    
    .packages-hero .page-title {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .featured-packages {
        margin-top: 2rem;
    }
    
    .pkg-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .why-card {
        margin-bottom: 1rem;
    }
}

/* ---------- Modern Uttarakhand Tourism Section ---------- */
.discover-section {
  padding: 80px 6%;
  text-align: center;
}

.discover-section h1 {
  font-size: 42px;
  font-weight: 700;
  color: #5f6c7b;
  margin-bottom: 12px;
}

.discover-section h1 span {
  position: relative;
}

.discover-section h1 span::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ff8a2a;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.discover-section p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 60px;
}

/* ---------- Cards Container ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ---------- Modern Card ---------- */
.uttarakhand-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.uttarakhand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* ---------- Icon ---------- */
.uttarakhand-icon {
  width: 60px;
  height: 60px;
  background: #ff8a2a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.uttarakhand-card:hover .uttarakhand-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(255, 138, 42, 0.3);
}

/* ---------- Card Content ---------- */
.uttarakhand-card h4 {
  font-size: 22px;
  color: #1f2937;
  margin-bottom: 14px;
  font-weight: 700;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.uttarakhand-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

/* ---------- Feature List ---------- */
.uttarakhand-features {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
  padding: 0;
}

.uttarakhand-features li {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
  transition: all 0.3s ease;
}

.uttarakhand-features li::before {
  content: "✓";
  color: #ff8a2a;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.uttarakhand-features li:hover {
  color: #1f2937;
  transform: translateX(5px);
}

/* ---------- Button ---------- */
.uttarakhand-card .btn {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #2563eb;
  color: #2563eb;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.uttarakhand-card .btn:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .discover-section h1 {
    font-size: 32px;
  }

  .discover-section {
    padding: 60px 5%;
  }
  
  .uttarakhand-card {
    padding: 30px 20px;
  }
}

/* Destination Cards */
.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.05);
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem;
    transition: background 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(transparent, rgba(255, 140, 66, 0.95));
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.destination-overlay h5 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.destination-overlay p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Culture Card */
.culture-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 20px rgba(30, 63, 32, 0.08);
    border: 1px solid var(--border);
}

.culture-card h3 {
    color: var(--pine-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.culture-content {
    display: grid;
    gap: 1.5rem;
}

.culture-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.culture-item i {
    color: var(--temple-saffron);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.culture-item h5 {
    margin: 0 0 0.5rem 0;
    color: var(--pine-green);
    font-weight: 600;
    font-size: 1rem;
}

.culture-item p {
    margin: 0;
    color: var(--mountain-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonials */
.testimonials-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 20px rgba(30, 63, 32, 0.08);
    border: 1px solid var(--border);
}

.testimonials-card h3 {
    color: var(--pine-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-item {
    background: var(--stone-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--temple-saffron);
}

.testimonial-content p {
    margin: 0 0 1rem 0;
    color: var(--mountain-gray);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--pine-green);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--mountain-gray);
    font-size: 0.85rem;
}

/* Season Cards */
.season-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 20px rgba(30, 63, 32, 0.08);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
}

.season-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.season-icon.spring {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
}

.season-icon.summer {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.season-icon.monsoon {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.season-icon.autumn {
    background: linear-gradient(135deg, #FF5722, #E64A19);
}

.season-card h4 {
    color: var(--pine-green);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.season-card p {
    color: var(--mountain-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.season-temp {
    background: var(--pine-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .uttarakhand-card,
    .culture-card,
    .testimonials-card,
    .season-card {
        margin-bottom: 1.5rem;
    }
    
    .culture-content {
        gap: 1rem;
    }
    
    .culture-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .destination-card {
        height: 150px;
    }
    
    .destination-overlay {
        padding: 1rem;
    }
    
    .destination-overlay h5 {
        font-size: 1rem;
    }
    
    .destination-overlay p {
        font-size: 0.8rem;
    }
}

/* Mountain Divider */
.mountain-divider {
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDE0NDAgODAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wIDgwTDQ4IDQ4TDI0MCA2NEwzMzYgNDhMNDgwIDY0TDU3NiA0OEw3MjAgNjQMODE2IDQ4TDk2MCA2NEwxMDI0IDQ4TDEyMDAgNjRMMTM0NCA0OEwxNDQwIDY0VjgwSDBWNDBaIiBmaWxsPSJ2YXIoLS1zdG9uZS1iZykiIGZpbGwtb3BhY2l0eT0iMC4zIi8+Cjwvc3ZnPg==');
    background-size: cover;
    background-repeat: no-repeat;
    margin: 40px 0;
}

/* Temple Icons */
.temple-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
    .snow-container {
        display: none;
    }
    
    .hero-section {
        padding: 80px 0 50px;
    }
    
    .section-head h2 {
        font-size: 2rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Footer Styles */
.nt-footer {
  background: radial-gradient(circle at top, #1a1443, #0b0624);
  color: #e6e6ff;
  font-size: 14px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-desc {
  line-height: 1.7;
  color: #cfcfff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 8px;
  color: #cfcfff;
}

.footer-links a {
  color: #cfcfff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff4d4d;
}

.footer-call-box {
  border: 1px dashed #ff4d4d;
  padding: 15px;
  border-radius: 8px;
}

.footer-phone a {
  color: #ff4d4d;
  font-weight: 600;
  text-decoration: none;
}

.footer-contact i {
  color: #ff4d4d;
  margin-right: 8px;
}

.payment-icons i {
  height: 28px;
  width: 28px;
  margin-right: 8px;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}

.payment-icons i:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.footer-keywords {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 15px;
  text-align: center;
  font-size: 13px;
  color: #dcdcff;
}

.footer-keywords a {
  color: #dcdcff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-keywords a:hover {
  color: #ff4d4d;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 15px;
  font-size: 13px;
}

.footer-bottom span {
  color: #ff4d4d;
}

/* Floating buttons */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25d366;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Team Page Styles */
.team-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-normal);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-img {
  height: 250px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-content {
  padding: var(--spacing-lg);
}

.team-content h4 {
  color: var(--pine-green);
  font-weight: 700;
  margin-bottom: 8px;
}

.team-role {
  color: var(--temple-saffron);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.team-desc {
  color: var(--mountain-gray);
  margin-bottom: var(--spacing-md);
  font-size: 0.95rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pine-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.team-social a:hover {
  background: var(--temple-saffron);
  transform: translateY(-2px);
}

/* FAQ Page Styles */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--temple-saffron);
}

.faq-question {
  color: var(--pine-green);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--mountain-gray);
  line-height: 1.6;
}

/* Payment Page Styles */
.payment-methods {
  margin-bottom: var(--spacing-xl);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.payment-method:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.payment-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-lg);
  background: var(--temple-saffron);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.payment-info h4 {
  color: var(--pine-green);
  font-weight: 600;
  margin-bottom: 8px;
}

.payment-info p {
  color: var(--mountain-gray);
  margin: 0;
}

.booking-steps {
  margin-bottom: var(--spacing-xl);
}

.step-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pine-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--pine-green);
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--mountain-gray);
  margin: 0;
}

.cancellation-policy {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}

.cancellation-policy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cancellation-policy li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--mountain-gray);
}

.cancellation-policy li:last-child {
  border-bottom: none;
}

.payment-sidebar {
  position: sticky;
  top: 100px;
}

.contact-box {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
}

.contact-box h4 {
  color: var(--pine-green);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.contact-info p {
  color: var(--mountain-gray);
  margin-bottom: 8px;
}

.contact-info i {
  color: var(--temple-saffron);
  margin-right: 8px;
}

.security-badges {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.security-badges h4 {
  color: var(--pine-green);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.badges {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.badges i {
  font-size: 2rem;
  color: var(--pine-green);
}

/* Privacy Policy & Terms & Conditions Page Styles */
.privacy-content,
.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.last-updated {
  background: var(--temple-saffron);
  color: white;
  padding: 12px 20px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.privacy-section,
.terms-section {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--temple-saffron);
}

.privacy-section h2,
.terms-section h2 {
  color: var(--pine-green);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  font-size: 1.4rem;
}

.privacy-section h3,
.terms-section h3 {
  color: var(--pine-green);
  font-weight: 600;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
}

.privacy-section p,
.terms-section p {
  color: var(--mountain-gray);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.privacy-section ul,
.terms-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-md);
}

.privacy-section li,
.terms-section li {
  color: var(--mountain-gray);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.privacy-section li::before,
.terms-section li::before {
  content: "•";
  color: var(--temple-saffron);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.privacy-section li strong,
.terms-section li strong {
  color: var(--pine-green);
  font-weight: 600;
}

.contact-info {
  background: rgba(14, 165, 233, 0.1);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--temple-saffron);
}

.contact-info p {
  margin-bottom: 8px;
  color: var(--mountain-gray);
}

.contact-info strong {
  color: var(--pine-green);
  font-weight: 600;
}

/* Package Detail Page - Enhanced Sections */
.pkg-tabs .tab-pane {
  padding: var(--spacing-xl) 0;
}

/* Itinerary Section */
.itin {
  margin-top: var(--spacing-lg);
}

.itin-item {
  display: flex;
  margin-bottom: var(--spacing-lg);
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.itin-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.itin-day {
  background: linear-gradient(135deg, var(--temple-saffron) 0%, #ff8c42 100%);
  color: white;
  padding: var(--spacing-lg);
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}

.itin-content {
  padding: var(--spacing-lg);
  flex: 1;
}

.itin-title {
  color: var(--pine-green);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

.itin-desc {
  color: var(--mountain-gray);
  line-height: 1.6;
}

/* Inclusions & Exclusions */
.pkg-tabs .tab-pane ul {
  list-style: none;
  padding: 0;
  margin: var(--spacing-lg) 0;
}

.pkg-tabs .tab-pane ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid rgba(30, 63, 32, 0.1);
  color: var(--mountain-gray);
  line-height: 1.6;
}

.pkg-tabs .tab-pane ul li:last-child {
  border-bottom: none;
}

.pkg-tabs .tab-pane ul li::before {
  content: "•";
  color: var(--temple-saffron);
  font-weight: bold;
  position: absolute;
  left: 12px;
  font-size: 1.2rem;
}

/* Inclusions specific styling */
#tab-inclusions ul li::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
}

/* Exclusions specific styling */
#tab-exclusions ul li::before {
  content: "✗";
  color: #dc3545;
  font-weight: bold;
}

/* FAQs Section */
.accordion {
  margin-top: var(--spacing-lg);
}

.accordion-item {
  border: none;
  margin-bottom: var(--spacing-md);
  border-radius: var(--border-radius-lg) !important;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-header {
  background: white;
}

.accordion-button {
  background: white;
  color: var(--pine-green);
  font-weight: 600;
  padding: var(--spacing-lg);
  border: none;
  font-size: 1rem;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
  color: var(--pine-green);
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e5e90'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e5e90'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.accordion-body {
  padding: var(--spacing-lg);
  color: var(--mountain-gray);
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.5);
}

/* ========================================
   MOBILE-FIRST ENHANCEMENTS
   ======================================== */

/* Bootstrap Dropdown Fixes */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.175);
  z-index: 1000;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}

/* Active Navigation State */
.navbar-nav .nav-link.active {
  color: var(--temple-saffron) !important;
  font-weight: 600;
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: linear-gradient(135deg, var(--temple-saffron) 0%, #ff8c42 100%);
  border-radius: 2px;
}

@media (max-width: 991px) {
  .navbar-nav .nav-link.active::after {
    bottom: 0;
    width: 4px;
    height: 100%;
    left: 0;
    transform: none;
    border-radius: 0 4px 4px 0;
  }
}

/* Mobile Viewport Meta Enhancements */
@viewport {
  width: device-width;
  zoom: 1.0;
}

/* Touch-friendly interactions */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Mobile Top Bar Enhancements */
@media (max-width: 991px) {
  .mobile-topbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 63, 32, 0.1);
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  
  .mobile-contact a,
  .mobile-whatsapp a {
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-contact a:hover,
  .mobile-whatsapp a:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    transform: translateY(-2px);
  }
  
  .mobile-contact i,
  .mobile-whatsapp i {
    font-size: 1rem;
  }
  
  .mobile-logo small {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: var(--pine-green);
  }
}

/* Mobile Header Enhancements */
@media (max-width: 991px) {
  .navbar {
    padding: 0.5rem 0;
    box-shadow: 0 2px 15px rgba(30, 63, 32, 0.1);
    margin-top: 0;
  }
  
  .site-logo {
    height: 40px;
    width: auto;
  }
  
  .navbar-brand {
    padding: 0.25rem 0;
  }
  
  .btn-whatsapp, .btn-call {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 25px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }
  
  .btn-call {
    background: linear-gradient(135deg, var(--temple-saffron) 0%, #ff8c42 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 63, 32, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  /* Mobile Navigation Menu */
  .navbar-collapse {
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(30, 63, 32, 0.15);
    margin-top: 0.5rem;
    padding: 1rem 0;
  }
  
  .navbar-nav {
    padding: 0 1rem;
  }
  
  .nav-item {
    margin-bottom: 0.5rem;
  }
  
  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    color: var(--pine-green);
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .nav-link:hover, .nav-link:focus {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    color: var(--pine-green);
    transform: translateX(5px);
  }
  
  .dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(30, 63, 32, 0.1);
    border-radius: 10px;
    margin-top: 0.5rem;
    padding: 0.5rem;
  }
  
  .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--mountain-gray);
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .dropdown-item:hover, .dropdown-item:focus {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    color: var(--pine-green);
    transform: translateX(5px);
  }
}

/* Mobile Footer Enhancements */
@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .footer-links {
    columns: 1;
    column-gap: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
    break-inside: avoid;
  }
  
  .footer-links a {
    padding: 0.5rem 0;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .footer-links a:hover, .footer-links a:focus {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    transform: translateX(5px);
    padding-left: 1rem;
  }
  
  .footer-contact {
    padding: 0;
  }
  
  .footer-contact li {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 12px;
    border: 1px solid rgba(30, 63, 32, 0.1);
    transition: all 0.3s ease;
  }
  
  .footer-contact li:hover, .footer-contact li:focus {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 63, 32, 0.1);
  }
  
  .footer-contact i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
    color: var(--temple-saffron);
  }
  
  .payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .payment-icons i {
    font-size: 1.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .payment-icons i:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }
  
  .footer-keywords {
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .footer-keywords a {
    display: inline-block;
    margin: 0.25rem 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(30, 63, 32, 0.1);
    transition: all 0.3s ease;
  }
  
  .footer-keywords a:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(255, 140, 66, 0.2) 100%);
    transform: translateY(-2px);
  }
  
  .footer-bottom {
    padding: 1.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* Floating Buttons Mobile Enhancement */
@media (max-width: 768px) {
  .floating-whatsapp {
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 15px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border: 3px solid white;
  }
  
  .floating-whatsapp i {
    font-size: 1.5rem;
  }
  
  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--temple-saffron) 100%);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
    border: 2px solid white;
  }
  
  .back-to-top i {
    font-size: 1.2rem;
  }
}

/* Mobile Package Cards Enhancement */
@media (max-width: 768px) {
  .pkg-card {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(30, 63, 32, 0.1);
    transition: all 0.3s ease;
  }
  
  .pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 63, 32, 0.15);
  }
  
  .pkg-img {
    height: 200px;
    object-fit: cover;
  }
  
  .pkg-content {
    padding: 1.5rem;
  }
  
  .pkg-price {
    font-size: 1.5rem;
  }
  
  .pkg-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile Contact Form Enhancement */
@media (max-width: 768px) {
  .contact-form {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .form-control, .form-select {
    min-height: 50px;
    border-radius: 12px;
    border: 2px solid rgba(30, 63, 32, 0.1);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-control:focus, .form-select:focus {
    border-color: var(--temple-saffron);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
  }
  
  .btn-submit {
    min-height: 50px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
  }
}

/* Mobile Hero Section Enhancement */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    min-height: 44px;
    margin: 0.5rem;
  }
}

/* Mobile Package Detail Enhancement */
@media (max-width: 768px) {
  .pkg-hero {
    min-height: 50vh;
    padding: 2rem 0;
  }
  
  .pkg-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .pkg-sub {
    font-size: 1rem;
  }
  
  .pkg-tabs .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
  }
  
  .enq-card {
    border-radius: 20px;
    padding: 1.5rem;
  }
  
  .enq-form .form-control {
    min-height: 50px;
    border-radius: 12px;
  }
  
  .enq-form .btn {
    min-height: 50px;
    border-radius: 25px;
    font-weight: 600;
  }
}

/* Mobile Blog Enhancement */
@media (max-width: 768px) {
  .blog-card {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(30, 63, 32, 0.1);
  }
  
  .blog-img {
    height: 200px;
    object-fit: cover;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .blog-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  
  .blog-meta {
    font-size: 0.875rem;
  }
}

/* Mobile Loading States */
@media (max-width: 768px) {
  .skeleton {
    border-radius: 12px;
  }
  
  .skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .skeleton-title {
    height: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* Mobile Accessibility Enhancements */
@media (max-width: 768px) {
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  .focus-visible:focus {
    outline: 2px solid var(--temple-saffron);
    outline-offset: 2px;
  }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  .hero-section,
  .pkg-hero,
  .section-hero {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
  }
  
  .pkg-card,
  .blog-card,
  .testimonial-card {
    will-change: transform;
    backface-visibility: hidden;
  }
}

/* Mobile Dark Mode Support */
@media (max-width: 768px) and (prefers-color-scheme: dark) {
  .navbar-collapse {
    background: #1a3320;
    color: white;
  }
  
  .nav-link,
  .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .footer-contact li {
    background: rgba(26, 51, 32, 0.8);
    color: rgba(255, 255, 255, 0.9);
  }
}
