@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================================
   NEPAL HELI SERVICES - PORTAL
   Figma Newspaper Template Replica
   ======================================== */

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2c2c2c;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
}

.font-oswald {
  font-family: 'Oswald', sans-serif;
}

.font-inter {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ========== ICONS ========== */
.icon-xs { width: 12px; height: 12px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 36px; height: 36px; }
.icon-xl { width: 48px; height: 48px; }

/* ========== TOP BAR ========== */
.top-bar {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #666;
}

.top-bar-divider {
  color: #ddd;
}

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

.breaking-news {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.breaking-label {
  background: #f65050;
  color: #fff;
  padding: 4px 10px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
}

.breaking-text {
  color: #666;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-facebook { background: #1b7bfd; }
.social-twitter { background: #42c0f5; }
.social-instagram { background: #c23785; }
.social-youtube { background: #ef5043; }

/* ========== HEADER ========== */
.header {
  padding: 20px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo-img {
  height: 62px;
  width: auto;
}

.header-ad {
  flex: 1;
  max-width: 771px;
}

.ad-banner {
  background: #000;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ad-subtitle {
  color: #f65050;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  white-space: nowrap;
}

.ad-title {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  flex: 1;
}

.ad-btn {
  background: #f65050;
  color: #fff;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.ad-btn:hover {
  background: #e04545;
}

/* ========== MAIN NAVIGATION ========== */
.main-nav {
  background: #393939;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.mobile-menu-btn {
  display: none;
  color: #fff;
  padding: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-link {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.nav-item:hover .nav-link {
  color: #f65050;
}

.nav-item.active .nav-link {
  color: #f65050;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  min-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-group-title {
  display: block;
  padding: 0 12px 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a0a0a0;
}

.dropdown-group-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu .dropdown-group + .dropdown-group {
  border-left: 1px solid #eee;
  padding-left: 16px;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  color: #2b2b2b;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-menu li a:hover {
  background: rgba(246, 80, 80, 0.08);
  color: #f65050;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  padding: 0 16px;
  cursor: pointer;
  height: 100%;
  border-left: 1px solid rgba(255,255,255,0.2);
  position: relative;
}

.nav-search-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
}

.nav-search-toggle:hover {
  opacity: 0.85;
}

.nav-search-form {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  align-items: center;
  gap: 6px;
  min-width: 280px;
  padding: 6px 8px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.nav-search.search-open .nav-search-form {
  display: flex;
}

.nav-search-form input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #393939;
  padding: 6px 4px;
}

.nav-search-form button {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 4px;
}

.nav-search-form button:hover {
  color: #f65050;
}

@media (max-width: 768px) {
  .nav-search-form {
    position: fixed;
    left: 0;
    right: 0;
    top: 60px;
    min-width: 0;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  }

  .nav-search {
    padding: 0 10px;
  }
}

/* ========== CATEGORY TAGS ========== */
.category-tag {
  display: inline-block;
  background: #f65050;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.category-tag-sm {
  display: inline-block;
  background: transparent;
  color: #393939;
  border: 1px solid #393939;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.category-tag-xs {
  display: inline-block;
  background: #f65050;
  color: #fff;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  margin-bottom: 24px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #f65050;
  margin-bottom: 8px;
}

.section-line {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  position: relative;
  margin-bottom: 16px;
}

.section-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 140px;
  height: 2px;
  background: #f65050;
}

/* ========== CATEGORY TABS ========== */
.category-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.tab {
  padding: 6px 14px;
  font-size: 13px;
  color: #393939;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.tab:hover,
.tab.active {
  color: #f65050;
  border-bottom-color: #f65050;
}

/* ========== NEWS SECTION ========== */
.news-section {
  padding: 30px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 670px 1fr;
  gap: 20px;
  height: 570px;
}

.news-featured {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-featured:hover .news-img {
  transform: scale(1.05);
}

.news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}

.news-title-lg {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin: 12px 0 8px;
}

.news-title-md {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin: 8px 0;
}

.news-title-sm {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  margin: 6px 0;
}

.news-meta {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 600;
}

.news-meta-xs {
  font-size: 10px;
  opacity: 0.8;
  font-weight: 600;
}

.news-secondary {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.news-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.news-card-sm {
  height: 278px;
}

.news-card-lg {
  height: 278px;
}

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

/* ========== DON'T MISS + SIDEBAR ========== */
.content-with-sidebar {
  padding: 30px 0;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 271px;
  gap: 30px;
}

.dont-miss-grid {
  display: grid;
  grid-template-columns: 394px 1fr;
  gap: 24px;
}

.dontmiss-featured {
  cursor: pointer;
}

.post-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dontmiss-featured:hover .post-img {
  transform: scale(1.03);
}

.post-content {
  padding: 16px 0;
}

.post-meta {
  font-size: 12px;
  color: #2c2c2c;
  font-weight: 600;
}

.post-meta-xs {
  font-size: 10px;
  color: #2c2c2c;
  font-weight: 600;
}

.post-title-lg {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #393939;
  line-height: 1.3;
  margin: 8px 0;
}

.post-title-sm {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #393939;
  line-height: 1.3;
}

.post-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: #393939;
  line-height: 1.5;
  margin: 8px 0;
}

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

.sidebar-post {
  display: flex;
  gap: 12px;
  cursor: pointer;
}

.sidebar-img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-content {
  flex: 1;
}

/* ========== RECENT SIDEBAR ========== */
.recent-sidebar {
  background: #fff;
}

.sidebar-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 8px;
}

.sidebar-tab {
  padding: 8px 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #393939;
  cursor: pointer;
  transition: color 0.2s ease;
}

.sidebar-tab.active {
  color: #f65050;
}

.sidebar-tab:hover {
  color: #f65050;
}

.sidebar-line {
  width: 100%;
  height: 2px;
  background: #e5e5e5;
  margin-bottom: 16px;
  position: relative;
}

.sidebar-line-active {
  position: absolute;
  left: 0;
  top: 0;
  width: 68px; /* Recent tab width */
  height: 2px;
  background: #f65050;
  transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1), width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Underline slide overrides controlled by JS parent classes */
.recent-sidebar.tab-recent .sidebar-line-active {
  left: 0;
  width: 68px;
}

.recent-sidebar.tab-trending .sidebar-line-active {
  left: 68px;
  width: 84px;
}

.recent-sidebar.tab-views .sidebar-line-active {
  left: 152px;
  width: 100px;
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recent-post {
  display: flex;
  gap: 10px;
  cursor: pointer;
}

.recent-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
}

.recent-content {
  flex: 1;
}

.recent-meta {
  font-size: 8px;
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 4px;
}

.recent-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #2c2c2c;
  line-height: 1.3;
}

/* ========== ENTERTAINMENT SECTION ========== */
.entertainment-section {
  padding: 30px 0;
}

.carousel-nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.carousel-btn {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: #f65050;
  border-color: #f65050;
  color: #fff;
}

.entertainment-featured {
  position: relative;
  height: 450px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 24px;
}

.entertainment-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.entertainment-featured:hover .entertainment-img {
  transform: scale(1.03);
}

.entertainment-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}

.entertainment-title {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 12px 0;
}

.entertainment-line {
  width: 80px;
  height: 2px;
  background: #f65050;
  margin-bottom: 12px;
}

.entertainment-desc {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
}

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

.entertainment-post {
  display: flex;
  gap: 12px;
  cursor: pointer;
}

.ent-post-img {
  width: 130px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.ent-post-content {
  flex: 1;
}

/* ========== SPORTS + AD SECTION ========== */
.sports-ad-section {
  padding: 30px 0;
}

.sports-ad-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

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

.sports-featured {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}

.sports-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sports-featured:hover .sports-img {
  transform: scale(1.05);
}

.sports-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}

.sports-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 8px 0;
}

.sports-meta {
  font-size: 12px;
  opacity: 0.8;
}

.sports-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sports-post {
  display: flex;
  gap: 12px;
  cursor: pointer;
}

.sports-post-img {
  width: 130px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.sports-post-content {
  flex: 1;
}

/* Ad Banner */
.sidebar-ad {
  position: relative;
}

.ad-banner-lg {
  background: #000;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 300px;
}

.ad-title-lg {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 8px 0 16px;
}

/* ========== VIDEO SECTION ========== */
.video-section {
  padding: 30px 0;
}

.video-featured {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 24px;
}

.video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-featured:hover .video-img {
  transform: scale(1.03);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}

.video-play-btn {
  width: 70px;
  height: 70px;
  background: #f65050;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease;
  z-index: 2;
}

.video-play-btn:hover {
  transform: scale(1.1);
}

.video-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}

.video-meta {
  font-size: 12px;
  font-weight: 600;
}

.video-title {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 500;
  margin: 8px 0;
}

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

.video-post {
  cursor: pointer;
}

.video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  margin-bottom: 10px;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-post:hover .video-thumb-img {
  transform: scale(1.05);
}

.video-play-sm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: #f65050;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.video-post:hover .video-play-sm {
  opacity: 1;
}

/* ========== INSTAGRAM SECTION ========== */
.instagram-section {
  padding: 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.instagram-img {
  width: 100%;
  height: 288px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.instagram-img:hover {
  opacity: 0.8;
}
@media (min-width: 769px) {
  .instagram-grid .instagram-img:nth-child(6) {
    display: none;
  }
}
.instagram-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}

.instagram-icon {
  width: 146px;
  height: 146px;
  background: #c23785;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.instagram-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ========== FOOTER ========== */
.footer {
  background: #393939;
  color: #fff;
  padding: 50px 0 55px;
}

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

.footer-logo {
  height: 62px;
  width: auto;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 20px;
}

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

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease;
}

.footer-social-icon:hover {
  transform: scale(1.1);
}

.footer-social-icon.fb { background: #1b7bfd; }
.footer-social-icon.tw { background: #42c0f5; }
.footer-social-icon.ig { background: #c23785; }
.footer-social-icon.yt { background: #ef5043; }

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 16px;
  position: relative;
}

.footer-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 2px;
  background: #f65050;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 12px;
  font-size: 12px;
  color: #fff;
  transition: all 0.2s ease;
}

.footer-tag:hover {
  background: #f65050;
  border-color: #f65050;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.gallery-img:hover {
  opacity: 0.8;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-cinfo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
}

.footer-cinfo-row i {
  color: #f65050;
  flex-shrink: 0;
}

.footer-cinfo-link {
  color: #fff;
  transition: color 0.2s ease;
  word-break: break-word;
}

.footer-cinfo-link:hover {
  color: #f65050;
}

.footer-cinfo-text {
  color: #fff;
  word-break: break-word;
}


.footer-newsletter-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-input {
  width: 100%;
  padding: 10px 14px;
  border: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.newsletter-btn {
  width: 100%;
  padding: 12px;
  background: #f65050;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-btn:hover {
  background: #e04545;
}

/* ========== BOTTOM BAR ========== */
.bottom-bar {
  background: #2c2c2c;
  padding: 16px 0;
}

.bottom-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 13px;
  color: #999;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: #999;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f65050;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  padding: 15px 0;
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a {
  color: #393939;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #f65050;
}

.breadcrumbs span.separator {
  color: #ccc;
}

.breadcrumbs span.current {
  color: #777;
}

/* ========== BLOG DETAILS LAYOUT ========== */
.post-meta-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-meta-item i,
.post-meta-item [data-lucide],
.post-meta-item svg {
  color: #f65050;
}

.author-badge {
  display: inline-block;
  background: #eef7ff;
  color: #1b7bfd;
  border: 1px solid #d0e8ff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-badge.operator {
  background: #fdf5eb;
  color: #e67e22;
  border-color: #fcebd2;
}

.post-body {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.post-body p {
  margin-bottom: 20px;
}

.post-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #393939;
  margin: 30px 0 15px;
  line-height: 1.3;
}

.post-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #393939;
  margin: 24px 0 12px;
  line-height: 1.3;
}

.post-body blockquote {
  position: relative;
  background: #f9f9f9;
  border-left: 4px solid #f65050;
  padding: 20px 30px 20px 45px;
  margin: 25px 0;
  font-style: italic;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

.post-body blockquote::before {
  content: '“';
  font-family: 'Oswald', sans-serif;
  font-size: 80px;
  color: rgba(246, 80, 80, 0.15);
  position: absolute;
  left: 15px;
  top: -15px;
  line-height: 1;
}

.post-body ul, .post-body ol {
  margin: 0 0 20px 24px;
}

.post-body ul li {
  list-style-type: disc;
  margin-bottom: 8px;
}

.post-body ol li {
  list-style-type: decimal;
  margin-bottom: 8px;
}

.post-body img {
  margin: 25px 0;
  width: 100%;
  border-radius: 4px;
}

.post-body figure {
  margin: 25px 0;
  text-align: center;
}

.post-body figure figcaption {
  font-size: 13px;
  color: #777;
  margin-top: 8px;
  font-style: italic;
}

/* Share Section */
.post-share-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 15px;
}

.post-share-title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #393939;
}

.share-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  transition: transform 0.2s, background 0.2s;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-facebook { background: #1b7bfd; }
.share-twitter { background: #42c0f5; }
.share-pinterest { background: #bd081c; }
.share-linkedin { background: #0077b5; }

/* ========== AUTHOR BIO CARD ========== */
.author-bio-card {
  display: flex;
  gap: 24px;
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 24px;
  margin-bottom: 45px;
  border-radius: 4px;
  align-items: flex-start;
}

.author-bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.author-bio-info {
  flex: 1;
}

.author-bio-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.author-bio-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #393939;
}

.author-bio-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.author-bio-socials {
  display: flex;
  gap: 12px;
}

.author-bio-social {
  color: #888;
  transition: color 0.2s;
}

.author-bio-social:hover {
  color: #f65050;
}

/* ========== RELATED POSTS ========== */
.related-posts-section {
  margin-bottom: 50px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-post-card {
  cursor: pointer;
}

.related-post-card:hover .related-post-title {
  color: #f65050;
}

.related-img-wrapper {
  height: 140px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 10px;
}

.related-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.related-post-card:hover .related-post-img {
  transform: scale(1.05);
}

.related-post-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #393939;
  line-height: 1.3;
}

/* ========== COMMENTS SECTION ========== */
.comments-container {
  margin-bottom: 50px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.comment-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.comment-item.reply {
  margin-left: 50px;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-content {
  flex: 1;
  background: #fff;
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 4px;
  position: relative;
}

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

.comment-author-name {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #393939;
}

.comment-date {
  font-size: 11px;
  color: #999;
}

.comment-text {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
}

.comment-reply-link {
  font-size: 12px;
  color: #f65050;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.comment-form-container {
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 4px;
}

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

.comment-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comment-form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #393939;
  text-transform: uppercase;
}

.comment-form-input {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
}

.comment-form-input:focus {
  border-color: #f65050;
  outline: none;
}

.comment-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.comment-submit-btn {
  background: #f65050;
  color: #fff;
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s;
}

.comment-submit-btn:hover {
  background: #e04545;
}

/* ========== ARTICLE CTA BOX ========== */
.article-cta-box {
  background: #fdf5eb;
  border-left: 4px solid #f65050;
  padding: 24px;
  margin: 35px 0;
  border-radius: 0 4px 4px 0;
}

.article-cta-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: #393939;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}

.article-cta-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px !important;
  line-height: 1.6;
}

.cta-submit-btn {
  display: inline-block;
  background: #f65050;
  color: #fff;
  padding: 10px 20px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}

.cta-submit-btn:hover {
  background: #e04545;
  transform: translateY(-1px);
}

/* ========== DIRECTORY SIDEBAR WIDGETS ========== */
.sidebar-directory-card {
  border: 1px solid #eee;
  background: #fff;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}

.sidebar-directory-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.directory-card-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.directory-logo {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid #eee;
}

.directory-title-info {
  flex: 1;
}

.directory-name {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #393939;
  line-height: 1.2;
}

.directory-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #f1c40f;
  font-size: 11px;
  margin-top: 4px;
}

.directory-rating span {
  color: #777;
  margin-left: 4px;
}

.directory-meta {
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.directory-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.directory-meta-item i,
.directory-meta-item [data-lucide],
.directory-meta-item svg {
  color: #f65050;
}

.directory-btn {
  display: block;
  text-align: center;
  background: #393939;
  color: #fff;
  padding: 8px;
  font-size: 12px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: background 0.2s;
}

.directory-btn:hover {
  background: #f65050;
}

/* ========== PROMO BANNER ========== */
.promo-banner {
  background: #fdf5eb;
  border-left: 4px solid #f65050;
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 4px 4px 0;
  flex-wrap: wrap;
  gap: 15px;
}

.promo-banner-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: #393939;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.promo-banner-text p {
  font-size: 13px;
  color: #555;
}

.promo-banner-btn {
  background: #f65050;
  color: #fff;
  padding: 8px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s;
}

.promo-banner-btn:hover {
  background: #e04545;
}

/* ========== DIRECTORY FILTERS ========== */
.directory-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 4px;
  flex-wrap: wrap;
  gap: 15px;
}

.search-wrapper {
  position: relative;
  flex: 1;
  max-width: 350px;
}

.search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.search-wrapper i,
.search-wrapper [data-lucide],
.search-wrapper svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.filter-options {
  display: flex;
  gap: 10px;
}

.filter-select {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  color: #393939;
  cursor: pointer;
}

/* ========== AGENCY DIRECTORY CARDS ========== */
.directory-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.agency-card {
  display: flex;
  gap: 24px;
  border: 1px solid #eee;
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  transition: box-shadow 0.2s, border-color 0.2s;
  align-items: flex-start;
}

.agency-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-color: #ddd;
}

.agency-logo-wrapper {
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
}

.agency-logo-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.agency-card-info {
  flex: 1;
}

.agency-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.agency-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #393939;
}

.agency-card-name a:hover {
  color: #f65050;
}

.agency-card-tagline {
  font-size: 13px;
  font-style: italic;
  color: #777;
  margin-bottom: 10px;
}

.agency-card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.agency-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.agency-meta-item i,
.agency-meta-item [data-lucide],
.agency-meta-item svg {
  color: #f65050;
}

.agency-card-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.agency-card-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  justify-content: space-between;
  height: 100%;
  min-height: 100px;
  align-self: stretch;
}

.agency-rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #f1c40f;
  font-size: 12px;
}

.agency-rating-stars span {
  color: #777;
  margin-left: 4px;
}

.agency-profile-btn {
  background: #393939;
  color: #fff;
  padding: 10px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}

.agency-profile-btn:hover {
  background: #f65050;
}

/* ========== CATEGORY BADGES ========== */
.badge-category {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-heli { background: #fdf5eb; color: #e67e22; border: 1px solid #fcebd2; }
.badge-trek { background: #ebf7ee; color: #27ae60; border: 1px solid #d4f0dc; }
.badge-travel { background: #eef7ff; color: #1b7bfd; border: 1px solid #d0e8ff; }
.badge-rescue { background: #fdebee; color: #c0392b; border: 1px solid #fadbd8; }

/* ========== AGENCY COVER SECTION ========== */
.company-cover-section {
  position: relative;
  height: 320px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
}

.company-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
}

.company-profile-header {
  position: relative;
  display: flex;
  gap: 24px;
  padding: 0 30px;
  margin-top: -60px;
  margin-bottom: 30px;
  align-items: flex-end;
  z-index: 10;
}

.profile-overlap-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-overlap-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.company-profile-name-info {
  flex: 1;
  padding-bottom: 10px;
}

.company-profile-title-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.company-profile-name {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #393939;
  line-height: 1.2;
}

.company-profile-tagline {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* ========== AGENCY SPECS GRID ========== */
.agency-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 35px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.spec-box {
  text-align: center;
  border-right: 1px solid #eee;
}

.spec-box:last-child {
  border-right: none;
}

.spec-label {
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}

.spec-value {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #393939;
}

.spec-value a {
  color: #f65050;
}

.spec-value a:hover {
  text-decoration: underline;
}

/* ========== AGENCY FULL DESCRIPTION (CKEditor Content) ========== */
.agency-full-description h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #393939;
  margin: 30px 0 15px;
  line-height: 1.3;
}

.agency-full-description h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #393939;
  margin: 24px 0 12px;
  line-height: 1.3;
}

.agency-full-description p {
  margin-bottom: 20px;
}

.agency-full-description ul,
.agency-full-description ol {
  margin: 0 0 20px 24px;
}

.agency-full-description ul li {
  list-style-type: disc;
  margin-bottom: 8px;
}

.agency-full-description ol li {
  list-style-type: decimal;
  margin-bottom: 8px;
}

.agency-full-description strong {
  font-weight: 600;
  color: #222;
}

.agency-full-description a {
  color: #f65050;
  text-decoration: none;
}

.agency-full-description a:hover {
  text-decoration: underline;
}

.agency-full-description img {
  margin: 25px 0;
  width: 100%;
  border-radius: 4px;
}

.agency-full-description blockquote {
  position: relative;
  background: #f9f9f9;
  border-left: 4px solid #f65050;
  padding: 20px 30px 20px 45px;
  margin: 25px 0;
  font-style: italic;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

.agency-full-description blockquote::before {
  content: '\201C';
  font-family: 'Oswald', sans-serif;
  font-size: 80px;
  color: rgba(246, 80, 80, 0.15);
  position: absolute;
  left: 15px;
  top: -15px;
  line-height: 1;
}

/* ========== FLEET / DETAILS STYLES ========== */
.details-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: #393939;
  margin: 30px 0 15px;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 14px;
}

.specs-table th, .specs-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.specs-table th {
  background: #f9f9f9;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: #393939;
  font-weight: 500;
}

.map-embed-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 4px;
  border: 1px solid #eee;
  margin-bottom: 35px;
}

.map-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== PARTNER FORM PAGE ========== */
.partner-form-label {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.partner-form-label [data-lucide],
.partner-form-label i {
  color: #888;
  margin-right: 5px;
}
.partner-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.partner-benefit-card {
  background: #fdfdfd;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-benefit-card:hover {
  transform: translateY(-2px);
  border-color: #f65050;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.benefit-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #fff0f0;
  color: #f65050;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.partner-form-wrapper {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.partner-form-section {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 28px 0 18px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-form-section:first-of-type {
  margin-top: 0;
}

.partner-form-section i,
.partner-form-section [data-lucide] {
  color: #f65050;
}

.partner-field-group {
  margin-bottom: 18px;
}

.partner-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req-star {
  color: #f65050;
  font-size: 14px;
  font-weight: 700;
  margin-left: 2px;
}

.partner-input,
.partner-select,
.partner-textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fdfdfd;
  border: 1px solid #dcdfe4;
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.partner-input:focus,
.partner-select:focus,
.partner-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #f65050;
  box-shadow: 0 0 0 3px rgba(246, 80, 80, 0.12);
}

.partner-input::placeholder,
.partner-textarea::placeholder {
  color: #aaa;
  font-size: 13px;
}

.partner-textarea {
  height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Custom File Upload Box */
.partner-upload-box {
  border: 2px dashed #cbd5e1;
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
  background: #fafbfc;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.partner-upload-box:hover {
  border-color: #f65050;
  background: #fff8f8;
}

.partner-upload-box input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  color: #f65050;
  margin-bottom: 8px;
}

.upload-title {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}

.upload-hint {
  font-size: 12px;
  color: #777;
}

/* Submit Action Bar */
.partner-submit-row {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.partner-submit-btn {
  background: #f65050;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(246, 80, 80, 0.25);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-submit-btn:hover {
  background: #d43b3b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(246, 80, 80, 0.35);
}

.partner-submit-btn:active {
  transform: translateY(0);
}

.partner-privacy-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
}

@media (max-width: 768px) {
  .partner-benefits-grid {
    grid-template-columns: 1fr;
  }
  .partner-submit-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .partner-submit-btn {
    width: 100%;
    justify-content: center;
  }
  .partner-privacy-note {
    justify-content: center;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  
  .sports-ad-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
  
  .recent-sidebar {
    display: none;
  }
  
  .blog-details-page .recent-sidebar {
    display: block;
    margin-top: 40px;
  }
  
  .nav-list {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #393939;
    padding: 20px;
    z-index: 200;
    align-items: stretch;
    height: auto;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  
  .nav-item {
    height: auto;
  }
  
  .nav-link {
    height: auto;
    padding: 12px 0;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #fff;
    border-radius: 10px;
    min-width: 0;
    padding: 10px 12px;
    margin: 4px 0 12px;
  }

  .dropdown-menu.open {
    display: block;
  }

  .dropdown-menu .dropdown-group + .dropdown-group {
    border-top: 1px solid #eee;
    border-left: none;
    padding-top: 10px;
    margin-top: 6px;
    padding-left: 0;
  }

  .dropdown-menu .dropdown-group-title {
    display: none;
  }

  .dropdown-menu .dropdown-group + .dropdown-group {
    border: none;
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    gap: 8px;
  }
  
  .breaking-news {
    display: none;
  }
  
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-ad .ad-title {
    display: none;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-secondary {
    grid-template-columns: 1fr;
  }
  
  .dont-miss-grid {
    grid-template-columns: 1fr;
  }
  
  .entertainment-grid {
    grid-template-columns: 1fr;
  }
  
  .sports-grid {
    grid-template-columns: 1fr;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  /* Blog Details Responsive */
  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .author-bio-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  
  .comment-item.reply {
    margin-left: 20px;
  }
  
  .comment-form-grid {
    grid-template-columns: 1fr;
  }

  /* Directory Listings & Filter Responsiveness */
  .directory-filters {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-wrapper {
    max-width: none;
  }
  
  .filter-options {
    flex-direction: column;
  }
  
  .filter-select {
    width: 100%;
  }

  .agency-card {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .agency-logo-wrapper {
    width: 80px;
    height: 80px;
  }

  .agency-card-action {
    align-items: flex-start;
    align-self: flex-start;
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 10px;
    min-height: auto;
  }

  .agency-profile-btn {
    width: 100%;
    text-align: center;
  }

  /* Details Profile Overlap Responsive */
  .company-cover-section {
    height: 200px;
  }

  .company-profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px !important;
    gap: 16px !important;
  }

  .company-profile-card > div {
    justify-content: center;
  }

  .company-profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -50px;
    padding: 0 15px;
    gap: 12px;
  }

  .profile-overlap-logo {
    width: 100px;
    height: 100px;
    border-width: 3px;
  }

  .company-profile-title-row {
    justify-content: center;
  }

  .agency-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .spec-box {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .spec-box:nth-child(even) {
    border-left: 1px solid #eee;
  }

  .spec-box:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .instagram-img {
    height: 200px;
  }
  
  .instagram-icon {
    width: 100px;
    height: 100px;
  }
  
  .instagram-icon i,
  .instagram-icon [data-lucide],
  .instagram-icon svg {
    width: 32px;
    height: 32px;
  }
}

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */
.about-hero-section {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 32px 28px;
  margin-bottom: 30px;
  position: relative;
}

.about-badge {
  display: inline-block;
  background: #fff0f0;
  color: #f65050;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  border: 1px solid #ffd8d8;
}

.about-title {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  line-height: 1.25;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* About Section Headers */
.about-section-header {
  margin-bottom: 16px;
}

.about-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: #222;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.about-section-icon {
  color: #f65050;
  width: 16px;
  height: 16px;
}

/* Stats Counter Strip */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

.about-stat-card {
  background: #fcfcfc;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  border-color: #f65050;
}

.about-stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #f65050;
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Feature Pillars Grid */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0 35px 0;
}

.about-pillar-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 24px;
  transition: border-color 0.2s ease;
}

.about-pillar-card:hover {
  border-color: #f65050;
}

.pillar-icon-box {
  width: 44px;
  height: 44px;
  background: #fff0f0;
  color: #f65050;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pillar-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pillar-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Editorial Values */
.about-values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0 35px 0;
}

.about-value-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 4px;
  border-left: 3px solid #f65050;
}

.value-check-icon {
  color: #f65050;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item-title {
  font-weight: 700;
  font-size: 14px;
  color: #222;
  margin-bottom: 4px;
}

.value-item-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* Team Grid */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0 35px 0;
}

.about-team-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.team-img-wrap {
  height: 180px;
  overflow: hidden;
  background: #eee;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-info {
  padding: 16px;
}

.team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: #f65050;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.team-bio {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* About Action CTA */
.about-action-box {
  background: linear-gradient(135deg, #222 0%, #333 100%);
  color: #fff;
  border-radius: 4px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.about-action-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.about-action-content p {
  color: #ccc;
  font-size: 14px;
  margin: 0;
}

.about-action-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.about-btn-primary {
  background: #f65050;
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 13px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  display: inline-block;
  white-space: nowrap;
}

.about-btn-primary:hover {
  background: #d43b3b;
  color: #fff;
}

.about-btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 13px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
  white-space: nowrap;
}

.about-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

@media (max-width: 991px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-pillars-grid,
  .about-values-list,
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  .about-action-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .about-action-btns {
    flex-direction: column;
    width: 100%;
  }
  .about-action-btns a {
    text-align: center;
    width: 100%;
  }
}

/* ========== BLOG GRID & ARCHIVE PAGE ========== */
.blog-filters-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  background: #fdfdfd;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 25px;
}

.blog-categories-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-cat-btn {
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.blog-cat-btn:hover,
.blog-cat-btn.active {
  background: #f65050;
  border-color: #f65050;
  color: #ffffff;
}

.blog-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 6px 12px;
  min-width: 240px;
}

.blog-search-box input {
  border: none;
  outline: none;
  font-size: 13px;
  width: 100%;
  color: #333;
}

/* Featured Lead Story Card */
.blog-lead-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-lead-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.blog-lead-img-wrap {
  height: 340px;
  min-height: 340px;
  max-height: 340px;
  overflow: hidden;
  position: relative;
  background: #eee;
}

.blog-lead-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.blog-lead-card:hover .blog-lead-img-wrap img {
  transform: scale(1.04);
}

.blog-lead-content {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-lead-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  line-height: 1.3;
  color: #222;
  text-transform: uppercase;
  margin: 10px 0 12px;
}

.blog-lead-title a {
  color: #222;
  transition: color 0.2s ease;
}

.blog-lead-title a:hover {
  color: #f65050;
}

.blog-lead-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* 2-Column Blog Articles Grid */
.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 35px;
}

.blog-grid-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-grid-card:hover {
  transform: translateY(-2px);
  border-color: #f65050;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.blog-grid-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #eee;
}

.blog-grid-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-grid-card:hover .blog-grid-img-wrap img {
  transform: scale(1.05);
}

.blog-grid-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f65050;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 2px;
}

.blog-grid-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-grid-meta {
  font-size: 11px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-grid-title {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  line-height: 1.35;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-grid-title a {
  color: #222;
  transition: color 0.2s ease;
}

.blog-grid-title a:hover {
  color: #f65050;
}

.blog-grid-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.blog-grid-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
  margin-top: auto;
}

.blog-read-more {
  color: #f65050;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.blog-read-more:hover {
  gap: 7px;
  color: #d43b3b;
}

/* Pagination Bar */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 30px 0 10px;
}

.pagination-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #444;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.pagination-item:hover:not(.active):not(.disabled) {
  border-color: #f65050;
  color: #f65050;
}

.pagination-item.active {
  background: #f65050;
  border-color: #f65050;
  color: #fff;
}

.pagination-item.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .blog-lead-card {
    grid-template-columns: 1fr;
  }
  .blog-articles-grid {
    grid-template-columns: 1fr;
  }
  .blog-filters-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-search-box {
    width: 100%;
  }
}

/* ========== CONTACT PAGE ========== */
.contact-hero-section {
  margin-bottom: 30px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff0f0;
  color: #f65050;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.contact-title {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  line-height: 1.2;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-lead {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: #f65050;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #fff0f0;
  color: #f65050;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 6px;
}

.contact-card-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}

.contact-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #f65050;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.contact-card-link:hover {
  gap: 8px;
  color: #d43838;
}

.contact-form-container {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 35px 30px;
  margin-bottom: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.contact-form-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 6px;
}

.contact-form-subheading {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fafafa;
  transition: all 0.2s ease;
  outline: none;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: #f65050;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(246, 80, 80, 0.1);
}

.contact-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-submit-btn {
  background: #f65050;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.contact-submit-btn:hover {
  background: #d43838;
  transform: translateY(-1px);
}

.contact-faq-section {
  background: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  padding: 30px;
  margin-bottom: 35px;
}

.contact-faq-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-faq-item h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  color: #222;
  margin-bottom: 6px;
}

.contact-faq-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ========== FAQ ACCORDION (homepage + /frequently-asked-question) ========== */
.faq-panel {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 6px 30px;
  max-width: 900px;
  margin: 0 auto 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.faq-item {
  border-bottom: 1px solid #ececec;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-btn .faq-q {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: #222;
  transition: color 0.25s ease;
}

.faq-btn:hover .faq-q,
.faq-btn.active .faq-q {
  color: #f65050;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  color: #f65050;
  background: #fff0f0;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease, color 0.25s ease;
}

.faq-btn.active .faq-icon {
  transform: rotate(45deg);
  background: #f65050;
  color: #fff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer > * {
  overflow: hidden;
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.faq-viewall {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 10px;
}

.faq-viewall a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #f65050;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: color 0.2s ease;
}

.faq-viewall a:hover {
  color: #d43838;
}

.faq-page-hero {
  margin-bottom: 30px;
}

.faq-empty {
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: #777;
}

.faq-cta-box {
  background: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  padding: 30px;
  margin-top: 35px;
  text-align: center;
}

.faq-cta-box p {
  font-size: 16px;
  color: #333;
  margin-bottom: 16px;
}

.faq-cta-box a {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #fff;
  background: #f65050;
  padding: 11px 26px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.faq-cta-box a:hover {
  background: #d43838;
}

.contact-map-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 30px;
}

.contact-map-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-map-header h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #222;
  margin: 0;
}

.contact-map-coords {
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 4px;
}

.emergency-alert-widget {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a1818 100%);
  border-left: 4px solid #f65050;
  border-radius: 6px;
  padding: 22px;
  color: #fff;
  margin-bottom: 25px;
}

.emergency-alert-widget h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #f65050;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.emergency-alert-widget p {
  font-size: 13px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 14px;
}

.emergency-hotline-btn {
  background: #f65050;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.emergency-hotline-btn:hover {
  background: #e03c3c;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-cards-grid,
  .contact-faq-grid,
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-container {
    padding: 20px 15px;
  }
}

/* ========== LISTING & BOOKING PORTAL STYLES ========== */
.flight-search-bar {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 22px 25px;
  margin-bottom: 30px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.flight-search-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flight-search-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: flex-end;
}

.flight-field-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.flight-field-group label i,
.flight-field-group label [data-lucide] {
  color: #f65050;
  margin-right: 3px;
  vertical-align: middle;
}

.flight-select,
.flight-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #333;
  background: #fafafa;
  outline: none;
  transition: all 0.2s ease;
}

.flight-select:focus,
.flight-input:focus {
  border-color: #f65050;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(246,80,80,0.1);
}

.flight-submit-btn {
  background: #f65050;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.flight-submit-btn:hover {
  background: #d43838;
  transform: translateY(-1px);
}

/* Operator Showcase Cards */
.operators-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.operator-mini-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  position: relative;
}

.operator-mini-card:hover {
  transform: translateY(-4px);
  border-color: #f65050;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.operator-mini-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.operator-mini-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.operator-mini-name {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  line-height: 1.2;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.operator-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  color: #27ae60;
  font-weight: 700;
  text-transform: uppercase;
  background: #eafaf1;
  padding: 2px 6px;
  border-radius: 3px;
}

.operator-mini-stats {
  font-size: 12px;
  color: #666;
  margin-bottom: 14px;
  line-height: 1.6;
}

.operator-mini-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.operator-mini-stats i,
.operator-mini-stats [data-lucide] {
  color: #f65050;
}

.operator-mini-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.operator-mini-btn {
  flex: 1;
  text-align: center;
  padding: 7px 10px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.operator-mini-btn.view-btn {
  background: #f4f4f4;
  color: #444;
  border: 1px solid #ddd;
}

.operator-mini-btn.view-btn:hover {
  background: #e8e8e8;
  color: #111;
}

.operator-mini-btn.book-btn {
  background: #f65050;
  color: #fff;
}

.operator-mini-btn.book-btn:hover {
  background: #d43838;
}

/* Tour Package Cards Grid */
.tour-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.tour-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  border-color: #f65050;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.tour-card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

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

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

.tour-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f65050;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
}

.tour-card-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.tour-card-price span {
  color: #f65050;
  font-size: 18px;
  font-weight: 700;
}

.tour-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #222;
  line-height: 1.3;
  margin-bottom: 8px;
}

.tour-card-title a:hover {
  color: #f65050;
}

.tour-card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 4px;
  font-size: 12px;
  color: #555;
}

.tour-spec-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-spec-item i,
.tour-spec-item [data-lucide] {
  color: #f65050;
}

.tour-card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.tour-card-footer {
  display: flex;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

/* Tour Hero Badges */
.hero-price-tag {
  background: #f65050;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 8px;
}

.hero-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
  margin-right: 6px;
}

@media (max-width: 1024px) {
  .operators-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tour-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flight-search-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .operators-showcase-grid {
    grid-template-columns: 1fr;
  }
  .tour-packages-grid {
    grid-template-columns: 1fr;
  }
  .flight-search-grid {
    grid-template-columns: 1fr;
  }
}



