/* =============================================
   TheOmanToday.com - Main Stylesheet
   Brand Colors: Oman Red #C8102E | White #FFFFFF
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --primary: #C8102E;
  --primary-dark: #9E0B24;
  --primary-light: #E63950;
  --primary-pale: #FDE8EC;
  --accent: #8B0000;
  --gold: #C9A84C;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #EEF0F3;
  --mid-gray: #9CA3AF;
  --dark-gray: #374151;
  --text: #1F2937;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --shadow-red: 0 4px 20px rgba(200,16,46,0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-en: 'Poppins', sans-serif;
  --font-ar: 'Cairo', sans-serif;
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: var(--font-en);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
[lang="ar"] body, .rtl-body { font-family: var(--font-ar); }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.78rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--accent);
}
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left span { display: flex; align-items: center; gap: 5px; opacity: 0.9; }
.top-bar-left i { color: var(--gold); }
.top-bar-right {
  display: flex; align-items: center; gap: 15px; justify-content: flex-end;
}
.social-links a {
  color: rgba(255,255,255,0.8);
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
}
.social-links a:hover { background: var(--primary-light); color: white; border-color: transparent; }
.lang-switcher { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; }
.lang-switcher a { color: rgba(255,255,255,0.8); }
.lang-switcher a.active { color: var(--gold); font-weight: 700; }
.lang-switcher span { color: rgba(255,255,255,0.4); }
.top-btn {
  background: var(--primary-light);
  color: white;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 600;
}
.top-btn:hover { background: white; color: var(--primary); }

/* ---- Main Header ---- */
.main-header {
  background: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  position: sticky; top: 0; z-index: 1000;
  transition: var(--transition);
}
.main-header.scrolled { padding: 8px 0; box-shadow: var(--shadow-lg); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; white-space: nowrap; }
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-red);
}
.logo-O {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-size: 1.2rem; font-weight: 800; color: var(--text); line-height: 1.1; }
.logo-accent { color: var(--primary); }
.logo-sub { font-size: 0.65rem; color: var(--mid-gray); font-weight: 400; }

/* Header Search */
.header-search { flex: 1; max-width: 600px; }
.search-wrap {
  display: flex;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(200,16,46,0.15);
}
.search-category {
  border-right: 2px solid var(--primary);
  flex-shrink: 0;
}
.search-category select {
  border: none;
  background: var(--primary-pale);
  padding: 10px 12px;
  font-size: 0.8rem;
  font-family: inherit;
  color: var(--primary-dark);
  font-weight: 600;
  outline: none;
  cursor: pointer;
  min-width: 130px;
}
.search-input {
  flex: 1;
  border: none;
  padding: 10px 16px;
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
}
.search-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.search-btn:hover { background: var(--primary-dark); }

/* Header CTA */
.btn-list-business {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-red);
}
.btn-list-business:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(200,16,46,0.4); color: white; }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 25px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Navigation ---- */
.main-nav {
  background: var(--primary);
  position: relative; z-index: 999;
}
.nav-menu {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-item > a {
  color: white;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 5px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-item > a:hover, .nav-item.active > a {
  background: rgba(0,0,0,0.2);
  color: white;
}
.nav-item.nav-highlight > a {
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 700;
}
.nav-item.nav-highlight > a:hover { background: #b8952e; }

/* Mega Dropdown */
.nav-item.has-dropdown { position: relative; }
.mega-dropdown, .dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: white;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--primary);
  z-index: 1000;
  animation: slideDown 0.2s ease;
}
.nav-item.has-dropdown:hover .mega-dropdown,
.nav-item.has-dropdown:hover .dropdown-menu-custom { display: block; }
.mega-dropdown { width: 100vw; left: 50%; transform: translateX(-50%); }
.mega-inner { display: flex; gap: 30px; padding: 30px 0; }
.mega-col { flex: 1; }
.mega-col h6 { color: var(--primary); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; padding-bottom: 8px; border-bottom: 2px solid var(--primary-pale); }
.mega-col ul li a { display: flex; align-items: center; gap: 8px; padding: 6px 0; color: var(--dark-gray); font-size: 0.85rem; }
.mega-col ul li a i { color: var(--primary); width: 16px; font-size: 0.8rem; }
.mega-col ul li a:hover { color: var(--primary); padding-left: 5px; }
.mega-promo { max-width: 220px; }
.mega-ad-box { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius); padding: 24px 20px; color: white; text-align: center; }
.mega-ad-box h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.mega-ad-box p { font-size: 0.8rem; opacity: 0.9; margin-bottom: 16px; }
.btn-mega-cta { background: white; color: var(--primary); padding: 8px 20px; border-radius: 20px; font-weight: 700; font-size: 0.8rem; display: inline-block; }
.btn-mega-cta:hover { background: var(--gold); color: white; }
.dropdown-menu-custom { min-width: 220px; padding: 8px 0; }
.dropdown-menu-custom a { display: flex; align-items: center; gap: 10px; padding: 10px 20px; color: var(--dark-gray); font-size: 0.85rem; }
.dropdown-menu-custom a i { color: var(--primary); width: 16px; }
.dropdown-menu-custom a:hover { background: var(--primary-pale); color: var(--primary); }

@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- News Ticker ---- */
.news-ticker-bar {
  background: #1a1a2e;
  padding: 7px 0;
  overflow: hidden;
}
.ticker-wrap { display: flex; align-items: center; gap: 15px; }
.ticker-label {
  background: var(--primary);
  color: white;
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
  flex-shrink: 0;
}
.ticker-content { flex: 1; overflow: hidden; }
.ticker-scroll {
  display: flex;
  gap: 30px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-scroll a { color: rgba(255,255,255,0.85); font-size: 0.8rem; }
.ticker-scroll a:hover { color: var(--gold); }
.ticker-sep { color: var(--primary-light); }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- Hero Section ---- */
.hero-section {
  background: linear-gradient(135deg, #1a0008 0%, #3d0012 40%, #8B0000 70%, #C8102E 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/images/oman-pattern.svg') center/cover;
  opacity: 0.05;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: white;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: white; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 20px; border-radius: 30px;
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--gold); }
.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-search-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 8px;
  display: flex;
  max-width: 780px;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.hero-search-tabs { display: flex; gap: 5px; margin-bottom: 25px; justify-content: center; }
.hero-tab {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 18px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.hero-tab.active, .hero-tab:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}
.hero-search-input {
  flex: 1; border: none; outline: none;
  font-size: 0.95rem; padding: 8px 16px;
  font-family: inherit; color: var(--text);
}
.hero-search-city {
  border: none; outline: none;
  background: var(--light-gray);
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.85rem;
  color: var(--dark-gray);
  margin-right: 8px;
}
.hero-search-submit {
  background: var(--primary);
  color: white; border: none;
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.hero-search-submit:hover { background: var(--primary-dark); }
.hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; opacity: 0.85; margin-top: 3px; }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 40px; }
.section-badge {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  padding: 4px 14px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--text); margin-bottom: 10px; }
.section-title span { color: var(--primary); }
.section-subtitle { color: var(--text-light); font-size: 0.95rem; max-width: 550px; margin: 0 auto; }
.section-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ---- Category Cards ---- */
.categories-section { padding: 60px 0 40px; background: var(--white); }
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
.cat-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0; transition: var(--transition);
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-red); color: white; }
.cat-card:hover .cat-icon, .cat-card:hover .cat-name, .cat-card:hover .cat-count { color: white; position: relative; z-index: 1; }
.cat-icon {
  width: 52px; height: 52px;
  background: var(--primary-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  transition: var(--transition);
  position: relative; z-index: 1;
}
.cat-card:hover .cat-icon { background: rgba(255,255,255,0.2); }
.cat-name { font-size: 0.82rem; font-weight: 600; color: var(--text); transition: var(--transition); position: relative; z-index: 1; line-height: 1.2; }
.cat-count { font-size: 0.7rem; color: var(--mid-gray); transition: var(--transition); position: relative; z-index: 1; }

/* ---- Business Cards ---- */
.business-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex; flex-direction: column;
}
.business-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.business-card-img {
  height: 170px; overflow: hidden; position: relative;
  background: var(--light-gray);
}
.business-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.business-card:hover .business-card-img img { transform: scale(1.08); }
.bc-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; flex-wrap: wrap; }
.badge-featured { background: var(--gold); color: white; padding: 3px 10px; border-radius: 12px; font-size: 0.68rem; font-weight: 700; }
.badge-verified { background: #10B981; color: white; padding: 3px 10px; border-radius: 12px; font-size: 0.68rem; font-weight: 700; }
.badge-premium { background: var(--primary); color: white; padding: 3px 10px; border-radius: 12px; font-size: 0.68rem; font-weight: 700; }
.business-logo {
  position: absolute; bottom: -22px; right: 15px;
  width: 50px; height: 50px; border-radius: 10px;
  background: white; border: 3px solid white;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}
.business-card-body { padding: 30px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.bc-category { font-size: 0.72rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.bc-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.bc-name a:hover { color: var(--primary); }
.bc-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.bc-rating .stars { color: var(--gold); font-size: 0.78rem; }
.bc-rating .score { font-size: 0.8rem; font-weight: 700; color: var(--text); }
.bc-rating .count { font-size: 0.72rem; color: var(--mid-gray); }
.bc-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px; flex: 1; }
.bc-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.bc-meta-item { display: flex; align-items: center; gap: 4px; font-size: 0.75rem; color: var(--mid-gray); }
.bc-meta-item i { color: var(--primary); font-size: 0.7rem; }
.bc-actions { display: flex; gap: 8px; border-top: 1px solid var(--border); padding-top: 12px; }
.btn-bc-call {
  flex: 1;
  background: var(--primary);
  color: white; border: none;
  padding: 8px; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer; transition: var(--transition);
}
.btn-bc-call:hover { background: var(--primary-dark); color: white; }
.btn-bc-wa {
  width: 38px; height: 38px;
  background: #25D366;
  color: white; border: none;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: var(--transition);
  flex-shrink: 0;
}
.btn-bc-wa:hover { background: #128C7E; color: white; }
.btn-bc-more {
  width: 38px; height: 38px;
  background: var(--light-gray);
  color: var(--dark-gray); border: none;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; cursor: pointer; transition: var(--transition);
  flex-shrink: 0;
}
.btn-bc-more:hover { background: var(--primary-pale); color: var(--primary); }

/* ---- Product Cards ---- */
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.product-card-img { height: 180px; overflow: hidden; background: var(--light-gray); position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.pc-category { font-size: 0.7rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.pc-name { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.pc-supplier { font-size: 0.75rem; color: var(--mid-gray); margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.pc-supplier i { color: var(--primary); }
.pc-price { font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.pc-moq { font-size: 0.72rem; color: var(--mid-gray); margin-bottom: 12px; }
.btn-get-quote {
  background: var(--primary);
  color: white; border: none;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600;
  width: 100%; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-get-quote:hover { background: var(--primary-dark); color: white; }

/* ---- News Cards ---- */
.news-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-img { height: 190px; overflow: hidden; position: relative; background: var(--light-gray); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.08); }
.news-cat-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary); color: white;
  padding: 3px 10px; border-radius: 12px; font-size: 0.68rem; font-weight: 700;
}
.news-breaking { background: #dc2626 !important; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }
.news-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; gap: 12px; margin-bottom: 8px; }
.news-meta span { font-size: 0.72rem; color: var(--mid-gray); display: flex; align-items: center; gap: 3px; }
.news-meta i { color: var(--primary); }
.news-title { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.35; flex: 1; }
.news-title a:hover { color: var(--primary); }
.news-excerpt { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; }
.btn-read-more { color: var(--primary); font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.btn-read-more:hover { gap: 8px; color: var(--primary-dark); }

/* ---- Statistics Section ---- */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('/assets/images/oman-pattern.svg') center/300px;
  opacity: 0.05;
}
.stat-item { text-align: center; color: white; position: relative; z-index: 1; }
.stat-num { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--gold); line-height: 1; }
.stat-plus { font-size: 1.8rem; }
.stat-label { font-size: 0.9rem; opacity: 0.9; margin-top: 8px; font-weight: 500; }
.stat-icon { font-size: 2rem; margin-bottom: 12px; opacity: 0.8; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.2); margin: 0 auto; }

/* ---- Why Choose Us ---- */
.features-section { padding: 80px 0; background: var(--off-white); }
.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border-bottom: 4px solid transparent;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-bottom-color: var(--primary); }
.feature-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem; color: white;
  box-shadow: var(--shadow-red);
}
.feature-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feature-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ---- Interviews ---- */
.interview-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.interview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ic-img { position: relative; height: 220px; overflow: hidden; }
.ic-img img { width: 100%; height: 100%; object-fit: cover; }
.ic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}
.ic-type {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: white;
  padding: 3px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 700;
}
.ic-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}
.ic-play:hover { background: var(--primary); color: white; transform: translate(-50%, -50%) scale(1.1); }
.ic-person {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  color: white;
}
.ic-person h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.ic-person span { font-size: 0.75rem; opacity: 0.85; }
.ic-body { padding: 18px; }
.ic-title { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.35; }
.ic-excerpt { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; }
.ic-link { color: var(--primary); font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.ic-link:hover { gap: 7px; color: var(--primary-dark); }

/* ---- Testimonials ---- */
.testimonials-section { padding: 80px 0; background: var(--off-white); }
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border-top: 4px solid var(--primary);
  height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.quote-icon {
  font-size: 3rem;
  color: var(--primary-pale);
  line-height: 1;
  margin-bottom: 10px;
  font-family: serif;
}
.tc-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.tc-content { font-size: 0.88rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-pale);
}
.tc-avatar-placeholder {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.tc-info h6 { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.tc-info span { font-size: 0.75rem; color: var(--mid-gray); }

/* ---- Newsletter ---- */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
}
.newsletter-inner {}
.newsletter-text h3 { color: white; font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.newsletter-form .form-control { border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important; border: none; padding: 12px 18px; font-size: 0.9rem; }
.btn-newsletter { background: var(--gold); color: white; border: none; padding: 12px 28px; font-weight: 700; font-size: 0.9rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; white-space: nowrap; cursor: pointer; transition: var(--transition); }
.btn-newsletter:hover { background: #b8952e; }
.newsletter-note { color: rgba(255,255,255,0.7); font-size: 0.75rem; margin-top: 8px; }
.newsletter-note i { color: var(--gold); }

/* ---- Footer ---- */
.main-footer { background: #0f0f1a; }
.footer-top { padding: 60px 0 40px; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.logo-O-footer {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: white;
}
.footer-logo-text { font-size: 1.2rem; font-weight: 800; color: white; }
.footer-logo-text span { color: var(--primary); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.7; margin-bottom: 18px; }
.footer-contact-info div { color: rgba(255,255,255,0.7); font-size: 0.82rem; display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.footer-contact-info i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-info a { color: rgba(255,255,255,0.7); }
.footer-contact-info a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--primary); color: white; border-color: var(--primary); }
.footer-widget h5 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.footer-widget ul li a { color: rgba(255,255,255,0.65); font-size: 0.82rem; display: flex; align-items: center; gap: 6px; padding: 5px 0; transition: var(--transition); }
.footer-widget ul li a i { color: var(--primary); font-size: 0.7rem; }
.footer-widget ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-news-list li { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-news-list li:last-child { border-bottom: none; }
.footer-news-list a { color: rgba(255,255,255,0.65); font-size: 0.8rem; display: flex; flex-direction: column; gap: 4px; }
.footer-news-list a:hover { color: var(--gold); }
.fn-title { line-height: 1.3; font-size: 0.8rem; }
.fn-date { font-size: 0.7rem; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 4px; }
.fn-date i { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin: 0; }
.footer-bottom .text-end p { color: rgba(255,255,255,0.35); }

/* ---- Back to Top & WhatsApp ---- */
.back-to-top {
  position: fixed; bottom: 90px; right: 20px;
  width: 44px; height: 44px;
  background: var(--primary); color: white;
  border: none; border-radius: 50%;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.whatsapp-float {
  position: fixed; bottom: 25px; right: 20px;
  width: 54px; height: 54px;
  background: #25D366; color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 500;
  transition: var(--transition);
  animation: waPulse 3s infinite;
}
.whatsapp-float:hover { background: #128C7E; transform: scale(1.1); color: white; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); } }

/* ---- Breadcrumb ---- */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 40px 0;
  color: white;
}
.page-header h1 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.75); font-size: 0.82rem; }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--gold); font-size: 0.82rem; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ---- Search & Filter Bar ---- */
.filter-bar { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.filter-bar .row { align-items: center; }
.filter-label { font-size: 0.78rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.filter-count { font-size: 0.82rem; color: var(--mid-gray); margin-bottom: 0; }
.filter-count span { color: var(--primary); font-weight: 700; }
.btn-filter { background: var(--light-gray); border: none; padding: 8px 16px; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 600; color: var(--dark-gray); cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.btn-filter:hover, .btn-filter.active { background: var(--primary); color: white; }

/* ---- Pagination ---- */
.pagination { display: flex; justify-content: center; gap: 5px; margin-top: 40px; flex-wrap: wrap; }
.pagination .page-item .page-link { border-radius: var(--radius-sm) !important; border: 1px solid var(--border); color: var(--text); font-size: 0.85rem; padding: 8px 14px; }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: white; }
.pagination .page-item .page-link:hover { background: var(--primary-pale); color: var(--primary); border-color: var(--primary); }

/* ---- Forms ---- */
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control, .form-select { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.88rem; font-family: inherit; transition: var(--transition); }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(200,16,46,0.1); outline: none; }
.btn-primary-custom { background: var(--primary); color: white; border: none; padding: 12px 32px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-primary-custom:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); color: white; }
.btn-outline-primary-custom { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 10px 28px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-primary-custom:hover { background: var(--primary); color: white; }

/* ---- Sidebar ---- */
.sidebar-widget { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.sidebar-widget h5 { font-size: 0.88rem; font-weight: 700; color: var(--text); border-bottom: 2px solid var(--primary); padding-bottom: 10px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.sidebar-widget h5 i { color: var(--primary); }

/* ---- Alerts ---- */
.alert-success-custom { background: #d1fae5; border-left: 4px solid #10B981; color: #065f46; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.85rem; }
.alert-error-custom { background: #fee2e2; border-left: 4px solid #EF4444; color: #991b1b; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.85rem; }

/* ---- Section Padding ---- */
.section { padding: 70px 0; }
.section-sm { padding: 40px 0; }
.bg-light-custom { background: var(--off-white); }
.bg-white { background: var(--white); }

/* ---- View All Button ---- */
.btn-view-all {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--primary); color: var(--primary);
  padding: 10px 28px; border-radius: 30px;
  font-weight: 700; font-size: 0.88rem;
  transition: var(--transition);
}
.btn-view-all:hover { background: var(--primary); color: white; gap: 12px; }

/* ---- Swiper Customization ---- */
.swiper-pagination-bullet-active { background: var(--primary) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--primary) !important; }

/* ---- Loading / Skeleton ---- */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 4px; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .header-search { max-width: 400px; }
  .nav-item > a { padding: 12px 10px; font-size: 0.8rem; }
}

@media (max-width: 991px) {
  .header-search { display: none; }
  .btn-list-business span { display: none; }
  .btn-list-business { padding: 8px 12px; }
  .mobile-toggle { display: flex; }
  .main-nav .container-xl { position: relative; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-top: 3px solid var(--primary);
  }
  .nav-menu.open { display: flex; }
  .nav-item > a { color: var(--text); border-bottom: 1px solid var(--border); }
  .nav-item.active > a { color: var(--primary); }
  .mega-dropdown, .dropdown-menu-custom { display: none !important; }
  .hero-search-box { flex-wrap: wrap; gap: 8px; }
  .hero-stats { gap: 20px; }
  .top-bar-left span:last-child { display: none; }
  .footer-bottom .text-end { text-align: left !important; }
}

@media (max-width: 767px) {
  .top-bar { display: none; }
  .main-header { padding: 10px 0; }
  .logo-sub { display: none; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-section { padding: 50px 0 40px; }
  .hero-search-city { display: none; }
  .section, .section-sm { padding: 50px 0; }
  .stat-divider { display: none; }
  .search-category { display: none; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 15px; }
  .hero-stat-num { font-size: 1.3rem; }
}

/* ---- Admin Styles ---- */
.admin-sidebar { width: 250px; background: #0f0f1a; min-height: 100vh; position: fixed; left: 0; top: 0; z-index: 1000; transition: var(--transition); }
.admin-sidebar .sidebar-logo { padding: 20px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: rgba(255,255,255,0.7); font-size: 0.85rem; transition: var(--transition); }
.admin-nav a:hover, .admin-nav a.active { background: var(--primary); color: white; border-left: 3px solid var(--gold); }
.admin-nav a i { width: 18px; }
.admin-main { margin-left: 250px; min-height: 100vh; background: var(--off-white); }
.admin-topbar { background: white; padding: 14px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.admin-content { padding: 24px; }
.admin-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 20px; }
.stat-card { border-left: 4px solid var(--primary); transition: var(--transition); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-card .stat-value { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-card .stat-name { font-size: 0.82rem; color: var(--mid-gray); font-weight: 600; }

/* Print */
@media print { .main-header, .main-nav, .news-ticker-bar, .newsletter-section, .main-footer, .back-to-top, .whatsapp-float { display: none !important; } }
