/* Nursil Travels - Premium Luxury UI */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0F172A; /* Deep premium blue/black */
  --primary-dark: #000000;
  --primary-light: #1E293B;
  --secondary: #0057B8;
  --accent: #15803d; /* Pakistani green */
  --accent-dark: #166534;
  --bg: #F8FAFC;
  --dark: #0B0F19;
  --text: #334155;
  --text-light: #64748B;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 30px 60px -15px rgba(15, 23, 42, 0.2);
  --shadow-glass: 0 8px 32px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-secondary:hover { background: #0096b8; transform: translateY(-2px); }

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover { background: var(--bg); transform: translateY(-2px); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--accent); }

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar i { margin-right: 6px; color: var(--accent); }

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.navbar-brand span { color: var(--accent); }

.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.nav-menu {
  --primary: #0F172A; /* Deep premium blue/black */
  --primary-dark: #000000;
  --primary-light: #1E293B;
  --secondary: #0057B8;
  --accent: #15803d; /* Pakistani green */
  --accent-dark: #166534;
  --bg: #F8FAFC;
  --dark: #0B0F19;
  --text: #334155;
  --text-light: #64748B;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 30px 60px -15px rgba(15, 23, 42, 0.2);
  --shadow-glass: 0 8px 32px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-secondary:hover { background: #0096b8; transform: translateY(-2px); }

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }

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

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover { background: var(--bg); transform: translateY(-2px); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 8px 0;
}

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

.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--accent); }

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

.top-bar i { margin-right: 6px; color: var(--accent); }

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.navbar-brand span { color: var(--accent); }

.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(0, 87, 184, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(0,87,184,0.5) 50%, rgba(15,23,42,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent), #ffd54f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}

/* ========== SEARCH WIDGET ========== */
.search-widget {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-top: 20px;
}

.search-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.search-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition);
}

.search-tab.active, .search-tab:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  align-items: end;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-widget .form-group label {
  color: rgba(255,255,255,0.8);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.15);
}

.search-widget .form-control {
  background: rgba(255,255,255,0.95);
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 87, 184, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-dark {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.section-dark .section-badge { background: rgba(255,255,255,0.1); color: var(--accent); }

/* ========== DESTINATION CARDS ========== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: dest;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card:hover img { transform: scale(1.08); }

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.dest-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

.dest-card .tour-count {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ========== TOUR CARDS ========== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.tour-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-image img { transform: scale(1.05); }

.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.tour-discount {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #EF4444;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.tour-type-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,87,184,0.9);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-card-body { padding: 24px; }

.tour-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.tour-meta i { color: var(--primary); margin-right: 4px; }

.tour-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-weight: 600;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.tour-price .original {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.tour-price .current {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}

.tour-price .per-person {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ========== VISA CARDS ========== */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.visa-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.visa-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.visa-card h3 { font-size: 1.1rem; margin-bottom: 12px; }

.visa-detail {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.visa-detail:last-of-type { border-bottom: none; }

.visa-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 16px 0;
}

/* ========== WHY CHOOSE US ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
}

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

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,87,184,0.1), rgba(0,180,216,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-light); }

/* ========== STATISTICS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(0,87,184,0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author h4 { font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  color: white;
  margin: 0 24px;
}

.cta-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ========== NEWSLETTER ========== */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  margin: 16px 0 24px;
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
  width: 16px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.payment-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.payment-icons span {
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 60px 0;
  text-align: center;
  color: white;
}

.page-header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.page-header p { color: rgba(255,255,255,0.8); }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: var(--accent); }

/* ========== TOUR DETAIL ========== */
.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 40px 0;
}

.tour-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  margin-bottom: 32px;
}

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

.tour-info h1 { font-size: 2rem; margin-bottom: 16px; }

.tour-info-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.tour-info-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.tour-info-meta i { color: var(--primary); }

.tour-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

.tour-tab {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.tour-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tour-tab-content { display: none; }
.tour-tab-content.active { display: block; }

.tour-tab-content h3 { margin-bottom: 16px; }
.tour-tab-content p, .tour-tab-content li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

.tour-tab-content ul { padding-left: 20px; list-style: disc; }

.booking-sidebar {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.booking-sidebar .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.booking-sidebar .price-old {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 8px;
}

.booking-sidebar .form-group { margin-bottom: 16px; }
.booking-sidebar .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.booking-sidebar .btn { width: 100%; margin-top: 8px; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.contact-info-card i {
  width: 48px;
  height: 48px;
  background: rgba(0,87,184,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

/* ========== AUTH ========== */
.auth-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.auth-card h2 {
  text-align: center;
  margin-bottom: 8px;
}

.auth-card .subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.auth-card .form-group { margin-bottom: 20px; }
.auth-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.auth-card .btn { width: 100%; }
.auth-card .auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.auth-card .auth-footer a { color: var(--primary); font-weight: 600; }

/* ========== ALERTS ========== */
.alert {
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.alert-info { background: #DBEAFE; color: #1E40AF; border: 1px solid #BFDBFE; }

/* ========== FILTERS ========== */
.filters-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.blog-card-image { height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 24px; }
.blog-card-body .category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card-body h3 { font-size: 1.1rem; margin: 8px 0 12px; }
.blog-card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }
.blog-card-body .read-more { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ========== ADMIN ========== */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 260px;
  background: var(--dark);
  color: white;
  padding: 24px 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
}

.admin-sidebar .brand {
  padding: 0 24px 24px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,0.1);
  color: white;
}

.admin-nav a i { width: 20px; text-align: center; }

.admin-main {
  margin-left: 260px;
  flex: 1;
  padding: 32px;
  background: var(--bg);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.admin-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.admin-stat {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.admin-stat h3 { font-size: 2rem; color: var(--primary); }
.admin-stat p { color: var(--text-light); font-size: 0.9rem; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th, .admin-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.admin-table th {
  background: var(--bg);
  font-weight: 600;
  color: var(--dark);
}

.status-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-pending { background: #FEF3C7; color: #92400E; }
.status-confirmed { background: #DCFCE7; color: #166534; }
.status-cancelled { background: #FEE2E2; color: #991B1B; }
/* ========== FILTERS ========== */
.filters-bar {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.filter-btn {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid black;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .tour-detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn-outline, .top-bar-right { display: none; }
  .nav-toggle { display: block; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
  }
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.blog-card-image { height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 24px; }
.blog-card-body .category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card-body h3 { font-size: 1.1rem; margin: 8px 0 12px; }
.blog-card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }
.blog-card-body .read-more { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ========== ADMIN ========== */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 260px;
  background: var(--dark);
  color: white;
  padding: 24px 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
}

.admin-sidebar .brand {
  padding: 0 24px 24px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,0.1);
  color: white;
}

.admin-nav a i { width: 20px; text-align: center; }

.admin-main {
  margin-left: 260px;
  flex: 1;
  padding: 32px;
  background: var(--bg);
}

.admin-main label {
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.admin-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.admin-stat {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.admin-stat h3 { font-size: 2rem; color: var(--primary); }
.admin-stat p { color: var(--text-light); font-size: 0.9rem; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th, .admin-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.admin-table th {
  background: var(--bg);
  font-weight: 600;
  color: var(--dark);
}

.status-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-pending { background: #FEF3C7; color: #92400E; }
.status-confirmed { background: #DCFCE7; color: #166534; }
.status-cancelled { background: #FEE2E2; color: #991B1B; }

/* ========== NAV HIGHLIGHT BUTTONS ========== */
.nav-highlight-btn {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  text-align: center;
}

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

/* ========== RESPONSIVE ========== */
.mobile-highlight-bar { display: none; }
.mobile-highlight-bar .container::-webkit-scrollbar { display: none; }

@media (max-width: 1024px) {
  .tour-detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Default Desktop Grids */
.admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.admin-charts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

@media (max-width: 768px) {
  .mobile-highlight-bar { display: block; background: var(--secondary); }
  .mobile-highlight-bar .nav-highlight-btn { color: white; border-color: rgba(255,255,255,0.4); }
  .mobile-highlight-bar .nav-highlight-btn:hover { background: rgba(255,255,255,0.1); }
  
  .nav-menu, .nav-actions .btn-outline, .top-bar-right { display: none; }
  .nav-toggle { display: block; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
  }

  .hero { min-height: 80vh; }
  .hero-overlay {
    background: linear-gradient(135deg, rgba(0,87,184,0.7) 0%, rgba(15,23,42,0.85) 100%);
  }
  .search-form { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section { margin: 0; border-radius: 0; }
  .newsletter-form { flex-direction: column; }
  .admin-sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    height: 100vh;
    z-index: 2000;
    transition: left 0.3s ease;
    display: block;
  }
  .admin-sidebar.open {
    left: 0;
  }
  .admin-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
  }
  .admin-sidebar-overlay.open {
    display: block;
  }
  .mobile-menu-toggle {
    display: inline-block !important;
  }
  .admin-main { margin-left: 0; padding: 16px; overflow-x: hidden; width: 100%; max-width: 100vw; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: 1fr; }
  .admin-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .admin-charts-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  
  /* Fix navbar spacing and overflow on small screens */
  .navbar-brand { font-size: 1.2rem; gap: 6px; }
  .navbar-brand .logo-icon { width: 32px; height: 32px; font-size: 1rem; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn-primary.btn-sm { padding: 6px 12px; font-size: 0.8rem; }
  
  .hero-title { font-size: 2rem; }
  .search-widget { padding: 20px; }
  .destinations-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .admin-card { padding: 16px; }
  .admin-stats-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ========== ROTATING BORDER HIGHLIGHT BUTTON ========== */
.nav-highlight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  margin-left: 4px;
  margin-right: 8px;
  background: #ffffff;
  color: #000000 !important;
  border: 1px solid #000000;
  text-decoration: none;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-highlight-btn:hover {
  background: #f8f9fa;
  color: #000000 !important;
}

/* Dropdown styling for nav */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    right: 0;
    margin-top: 8px;
    border: 1px solid #e2e8f0;
}

.nav-dropdown-content a {
    color: #1e293b;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s;
    border-bottom: 1px solid #f1f5f9;
}

.nav-dropdown-content a:last-child {
    border-bottom: none;
}

.nav-dropdown-content a:hover {
    background-color: #f8fafc;
    color: var(--primary);
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

/* RTL Support */
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}
html[dir="rtl"] .top-bar-left {
    float: right;
}
html[dir="rtl"] .top-bar-right {
    float: left;
}
html[dir="rtl"] .nav-menu {
    margin-right: auto;
    margin-left: 0;
}
html[dir="rtl"] .navbar-brand {
    margin-left: 20px;
    margin-right: 0;
}
html[dir="rtl"] .hero-content {
    text-align: right;
}
t a b l e . t a b l e   t d : l a s t - c h i l d   {   w h i t e - s p a c e :   n o w r a p ;   d i s p l a y :   f l e x ;   g a p :   8 p x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   f l e x - s t a r t ;   }  
 t d   f o r m   {   d i s p l a y :   i n l i n e - b l o c k ;   m a r g i n :   0 ;   }  
 . a c t i o n - b u t t o n s   {   d i s p l a y :   f l e x ;   g a p :   5 p x ;   a l i g n - i t e m s :   c e n t e r ;   f l e x - w r a p :   n o w r a p ;   }  
 t a b l e . t a b l e   t d : l a s t - c h i l d   {   w h i t e - s p a c e :   n o w r a p ;   }  
 . t o u r - a c t i o n s   {   d i s p l a y :   f l e x ;   g a p :   5 p x ;   a l i g n - i t e m s :   c e n t e r ;   f l e x - w r a p :   n o w r a p ;   }  
 . t o u r - a c t i o n s   f o r m   {   d i s p l a y :   i n l i n e - b l o c k ;   m a r g i n :   0 ;   }  
 t a b l e   t d   {   b o r d e r - b o t t o m :   1 p x   s o l i d   # e 2 e 8 f 0 ;   }   t a b l e   t r : l a s t - c h i l d   t d   {   b o r d e r - b o t t o m :   n o n e ;   }  
 
/* Top Bar Enhancements */
.top-bar-lang-form { display: inline-block; margin: 0; }
.top-bar-lang-select {
    padding: 2px 6px;
    font-size: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.top-bar-lang-select option { color: #333; }
.top-bar-currency-btn {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.top-bar-lang-select:hover, .top-bar-currency-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .top-bar-left {
        justify-content: center;
        width: 100%;
        gap: 15px; /* Professional gap */
        flex-wrap: wrap;
    }
}

/* Status Update Form Responsive Styles */
.status-update-form {
    display: flex;
    gap: 12px;
    align-items: end;
}
.status-update-form .status-form-group {
    margin: 0;
    min-width: 150px;
}

@media (max-width: 768px) {
    .status-update-form {
        gap: 8px;
        flex-wrap: wrap;
    }
    .status-update-form .status-form-group {
        flex: 1;
        min-width: 110px;
    }
    .status-update-form .form-control {
        padding: 6px 10px;
        font-size: 14px;
        height: auto;
    }
    .status-update-form .btn {
        padding: 6px 12px;
        font-size: 14px;
        height: auto;
    }
    .admin-profile-link {
        display: none !important;
    }
}
