:root {
  --primary-dark: #002b28;
  --primary-medium: #003d38;
  --primary-light: #004d47;
  --accent-teal: #e57e3a;
  --accent-gold: #cfb53b;
  --text-white: #ffffff;
  --text-dim: #aebdbb;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  --success-green: #2ecc71;
  --danger-red: #e74c3c;
}

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

body {
  font-family: "Cairo", sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-white);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: 90px;
  background: #001f1d;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid var(--border-color);
  z-index: 100;
  padding: 20px 0;
}

.logo-area {
  /* display: flex; */
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.logo-area img {
  height: 30px;
}

.nav-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  width: 100%;
  align-items: center;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 5px 0;
}

.nav-icons::-webkit-scrollbar {
  display: none;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-teal);
}

.nav-btn.active {
  background: var(--accent-teal);
  color: var(--primary-dark);
  box-shadow: 0 0 15px rgba(156, 235, 200, 0.3);
}

.nav-btn::after {
  content: attr(title);
  position: absolute;
  right: 70px;
  background: var(--accent-teal);
  color: var(--primary-dark);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: bold;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 1000;
}

.nav-btn:hover::after {
  opacity: 1;
}

.back-home-btn {
  margin-top: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.back-home-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.back-home-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== CONTENT AREA ===== */
.content-area {
  flex: 1;
  position: relative;
  background: linear-gradient(
    135deg,
    #001a18 0%,
    var(--primary-dark) 50%,
    #003d38 100%
  );
  overflow: hidden;
}

.content-section {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  padding: 40px;
}

.content-section.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.content-section::-webkit-scrollbar {
  width: 6px;
}
.content-section::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.content-section::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  margin-bottom: 30px;
  text-align: center;
}

.section-header h1 {
  font-size: 36px;
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-dim);
  font-size: 16px;
}

/* ===== OVERVIEW SECTION ===== */
.ir-hero {
  background: linear-gradient(
      135deg,
      rgba(102, 104, 106, 0.8),
      rgba(47, 49, 51, 0.9)
    ),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600")
      center/cover;
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.hero-content-ir {
  position: relative;
  z-index: 1;
}

.ir-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 20px;
}

.ir-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--text-white);
}

.ir-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.highlight-card {
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: 0.3s;
}

.highlight-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 35px;
  margin-bottom: 15px;
}

.highlight-value {
  font-size: 32px;
  font-weight: bold;
  color: var(--accent-teal);
  margin-bottom: 8px;
}

.currency {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: normal;
}

.highlight-label {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 8px;
}

.highlight-change {
  font-size: 13px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
}

.highlight-change.positive {
  background: rgba(46, 204, 113, 0.2);
  color: var(--success-green);
}

.highlight-change.negative {
  background: rgba(231, 76, 60, 0.2);
  color: var(--danger-red);
}

.why-invest {
  background: rgb(74 76 79 / 80%);
  padding: 40px;
  border-radius: 20px;
}

.why-invest h2 {
  color: var(--accent-teal);
  text-align: center;
  margin-bottom: 30px;
}

.invest-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.reason-card {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.reason-card:hover {
  background: rgba(156, 235, 200, 0.05);
  transform: translateY(-3px);
}

.reason-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.reason-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.reason-card p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== STOCK INFO SECTION ===== */
.stock-overview {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.stock-chart-container {
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

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

.chart-header h3 {
  color: var(--accent-teal);
}

.chart-period {
  display: flex;
  gap: 5px;
}

.period-btn {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 5px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 11px;
  transition: 0.3s;
}

.period-btn:hover,
.period-btn.active {
  background: var(--accent-teal);
  color: var(--primary-dark);
  border-color: var(--accent-teal);
}

.stock-chart {
  height: 250px;
}

.chart-placeholder {
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
}

.chart-svg {
  width: 100%;
  height: 100%;
}

.stock-info-cards {
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row.highlight {
  background: rgba(156, 235, 200, 0.1);
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  margin-top: 10px;
}

.info-label {
  color: var(--text-dim);
  font-size: 13px;
}

.info-value {
  font-weight: bold;
  color: var(--text-white);
}

.stock-ratios {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
}

.stock-ratios h3 {
  color: var(--accent-teal);
  margin-bottom: 25px;
}

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

.ratio-card {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.ratio-name {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.ratio-value {
  font-size: 24px;
  font-weight: bold;
  color: var(--accent-teal);
}

/* ===== FINANCIAL RESULTS ===== */
.financial-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.summary-card,
.quarterly-results {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.summary-card h3,
.quarterly-results h3 {
  color: var(--accent-teal);
  margin-bottom: 25px;
}

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

.metric {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
}

.metric-label {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.metric-value {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: var(--accent-teal);
  margin-bottom: 5px;
}

.metric-change {
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 10px;
  display: inline-block;
}

.quarters-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.quarter-tab {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s;
}

.quarter-tab:hover,
.quarter-tab.active {
  background: var(--accent-teal);
  color: var(--primary-dark);
}

.quarter-details {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.chart-box {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.chart-box h4 {
  color: var(--accent-teal);
  margin-bottom: 25px;
  text-align: center;
}

.bar-chart {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 200px;
  margin-bottom: 15px;
}

.bar {
  flex: 1;
  background: linear-gradient(
    to top,
    var(--accent-teal),
    rgba(156, 235, 200, 0.5)
  );
  margin: 0 5px;
  border-radius: 8px 8px 0 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transition: 0.3s;
}

.bar:hover {
  opacity: 0.8;
}

.bar.profit {
  background: linear-gradient(
    to top,
    var(--accent-gold),
    rgba(207, 181, 59, 0.5)
  );
}

.bar span {
  position: absolute;
  top: -25px;
  font-size: 12px;
  font-weight: bold;
  color: var(--text-white);
}

.chart-labels {
  display: flex;
  justify-content: space-around;
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== REPORTS ===== */
.reports-categories {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.report-category h3 {
  color: var(--accent-teal);
  margin-bottom: 20px;
}

.reports-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.report-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgb(74 76 79 / 80%);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: 0.3s;
}

.report-item:hover {
  border-color: var(--accent-teal);
  transform: translateX(-5px);
}

.report-icon {
  font-size: 35px;
  flex-shrink: 0;
}

.report-details {
  flex: 1;
}

.report-details h4 {
  margin-bottom: 5px;
}

.report-details p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 5px;
}

.report-size {
  font-size: 11px;
  color: var(--accent-gold);
}

.download-report-btn {
  background: var(--accent-teal);
  color: var(--primary-dark);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.download-report-btn:hover {
  background: var(--accent-gold);
}

/* ===== PRESENTATIONS ===== */
.presentations-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 25px;
}

.presentation-card {
  background: rgb(74 76 79 / 80%);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: 0.3s;
}

.presentation-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-teal);
}

.presentation-card.featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.pres-thumbnail {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.presentation-card.featured .pres-thumbnail {
  height: 100%;
}

.pres-icon {
  font-size: 60px;
}

.pres-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--danger-red);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: bold;
}

.pres-info {
  padding: 25px;
}

.pres-info h3 {
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.pres-meta {
  display: flex;
  gap: 15px;
  margin: 15px 0;
  font-size: 12px;
  color: var(--text-dim);
}

.pres-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.pres-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.pres-btn.download {
  background: var(--accent-teal);
  color: var(--primary-dark);
}

.pres-btn.view {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

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

/* ===== DIVIDENDS ===== */
.dividend-policy {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.policy-box h3 {
  color: var(--accent-teal);
  margin-bottom: 15px;
}

.policy-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 10px;
}

.feature-icon {
  color: var(--success-green);
  font-weight: bold;
}

.dividend-history {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.dividend-history h3 {
  color: var(--accent-teal);
  margin-bottom: 25px;
}

.dividend-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr 1.3fr 1.2fr 1.2fr;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
}

.table-header {
  background: rgba(156, 235, 200, 0.1);
  font-weight: bold;
  color: var(--accent-teal);
}

.table-row {
  background: rgba(0, 0, 0, 0.2);
}

.table-row .amount {
  font-weight: bold;
  color: var(--accent-teal);
}

.dividend-calculator {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
}

.dividend-calculator h3 {
  color: var(--accent-teal);
  margin-bottom: 25px;
}

.calculator-box {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 15px;
}

.calc-input {
  margin-bottom: 20px;
}

.calc-input label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dim);
}

.calc-input input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
}

.calc-btn {
  width: 100%;
  background: var(--accent-teal);
  color: var(--primary-dark);
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 20px;
}

.calc-btn:hover {
  background: var(--accent-gold);
}

.calc-result {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: var(--primary-dark);
}

.result-label {
  font-size: 14px;
  margin-bottom: 10px;
}

.result-value {
  font-size: 32px;
  font-weight: bold;
}

/* ===== GOVERNANCE ===== */
.governance-overview {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gov-intro {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
}

.gov-intro h3 {
  color: var(--accent-teal);
  margin-bottom: 15px;
}

.governance-documents h3 {
  color: var(--accent-teal);
  margin-bottom: 25px;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.doc-card {
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: 0.3s;
}

.doc-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-5px);
}

.doc-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.doc-download {
  background: var(--accent-teal);
  color: var(--primary-dark);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 15px;
}

.board-composition {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
}

.board-composition h3 {
  color: var(--accent-teal);
  margin-bottom: 25px;
}

.board-stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.board-stat {
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 15px;
  flex: 1;
}

.board-stat .stat-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.committees h3 {
  color: var(--accent-teal);
  margin-bottom: 25px;
}

.committees-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.committee-item {
  display: flex;
  gap: 20px;
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
}

.committee-icon {
  font-size: 35px;
  flex-shrink: 0;
}

.committee-info h4 {
  margin-bottom: 8px;
}

.committee-info p {
  color: var(--text-dim);
  font-size: 13px;
}

/* ===== CALENDAR ===== */
.calendar-view {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.calendar-upcoming,
.calendar-past {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
}

.calendar-upcoming h3,
.calendar-past h3 {
  color: var(--accent-teal);
  margin-bottom: 25px;
}

.events-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-event {
  display: flex;
  gap: 20px;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 15px;
  border-right: 4px solid var(--border-color);
}

.timeline-event.upcoming {
  border-color: var(--accent-teal);
}

.event-date {
  text-align: center;
  background: var(--accent-teal);
  color: var(--primary-dark);
  padding: 15px;
  border-radius: 10px;
  flex-shrink: 0;
  width: 80px;
}

.date-day {
  font-size: 28px;
  font-weight: bold;
}

.date-month,
.date-year {
  font-size: 12px;
}

.event-details h4 {
  margin-bottom: 8px;
}

.event-details p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.event-type {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
}

.event-type.earnings {
  background: rgba(46, 204, 113, 0.2);
  color: var(--success-green);
}

.event-type.conference {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

.event-type.dividend {
  background: rgba(207, 181, 59, 0.2);
  color: var(--accent-gold);
}

.event-type.agm {
  background: rgba(229, 126, 58, 0.2);
  color: var(--accent-teal);
}

.past-events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.past-event {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  font-size: 13px;
}

.past-date {
  color: var(--text-dim);
}

/* ===== ANNOUNCEMENTS ===== */
.announcements-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.announcement-card {
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.announcement-card.urgent {
  border-color: var(--danger-red);
}

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

.ann-badge {
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: bold;
}

.ann-badge.urgent {
  background: var(--danger-red);
  color: white;
}

.ann-badge:not(.urgent) {
  background: var(--accent-teal);
  color: var(--primary-dark);
}

.ann-date {
  font-size: 12px;
  color: var(--text-dim);
}

.announcement-card h3 {
  color: var(--accent-teal);
  margin-bottom: 15px;
}

.ann-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.ann-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s;
}

.ann-btn:hover {
  background: var(--accent-teal);
  color: var(--primary-dark);
  border-color: var(--accent-teal);
}

/* ===== ANALYST COVERAGE ===== */
.analyst-coverage {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
}

.coverage-summary {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
}

.coverage-summary h3 {
  color: var(--accent-teal);
  margin-bottom: 25px;
}

.coverage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.coverage-item {
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
}

.cov-number {
  font-size: 36px;
  font-weight: bold;
  color: var(--accent-teal);
  margin-bottom: 8px;
}

.cov-label {
  font-size: 12px;
  color: var(--text-dim);
}

.recommendations h4 {
  color: var(--accent-teal);
  margin-bottom: 20px;
}

.rec-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rec-bar {
  display: grid;
  grid-template-columns: 100px 1fr 40px;
  gap: 10px;
  align-items: center;
}

.rec-label {
  font-size: 12px;
}

.rec-progress {
  background: rgba(0, 0, 0, 0.3);
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.rec-fill {
  height: 100%;
  transition: width 0.5s;
}

.rec-fill.buy-strong {
  background: var(--success-green);
}

.rec-fill.buy {
  background: #3498db;
}

.rec-fill.hold {
  background: var(--accent-gold);
}

.rec-fill.sell {
  background: var(--danger-red);
}

.rec-count {
  text-align: center;
  font-weight: bold;
}

.analyst-reports {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
}

.analyst-reports h3 {
  color: var(--accent-teal);
  margin-bottom: 25px;
}

.reports-analyst-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.analyst-report-card {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 15px;
  align-items: center;
}

.analyst-firm {
  font-weight: bold;
}

.report-recommendation {
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
}

.report-recommendation.buy-strong {
  background: rgba(46, 204, 113, 0.2);
  color: var(--success-green);
}

.report-recommendation.buy {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

.report-recommendation.hold {
  background: rgba(207, 181, 59, 0.2);
  color: var(--accent-gold);
}

.target-price {
  font-size: 13px;
}

.target-price strong {
  color: var(--accent-teal);
}

/* ===== FAQs ===== */
.faqs-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-category h3 {
  color: var(--accent-teal);
  margin-bottom: 20px;
}

.faq-item {
  background: rgb(74 76 79 / 80%);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question:hover {
  background: rgba(156, 235, 200, 0.05);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--accent-teal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px 20px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* ===== CONTACT ===== */
.ir-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
}

.ir-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ir-contact-card {
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.ir-contact-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.ir-contact-card h3 {
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.ir-contact-card p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 5px 0;
}

.ir-contact-form-wrapper {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
}

.ir-contact-form-wrapper h3 {
  color: var(--accent-teal);
  margin-bottom: 25px;
}

.ir-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 12px;
  border-radius: 8px;
  font-family: "Cairo", sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
}

.ir-submit-btn {
  background: var(--accent-teal);
  color: var(--primary-dark);
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.ir-submit-btn:hover {
  background: var(--accent-gold);
}

.subscribe-alerts {
  background: rgba(156, 235, 200, 0.1);
  padding: 25px;
  border-radius: 15px;
  margin-top: 30px;
}

.subscribe-alerts h4 {
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.subscribe-form input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 12px;
  border-radius: 8px;
}

.subscribe-form button {
  background: var(--accent-teal);
  color: var(--primary-dark);
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ir-highlights,
  .invest-reasons,
  .ratios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stock-overview,
  .financial-summary,
  .financial-charts,
  .analyst-coverage,
  .ir-contact-layout {
    grid-template-columns: 1fr;
  }

  .presentations-grid {
    grid-template-columns: 1fr;
  }
  .presentation-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}
/* ===== BOTTOM NAV EXTENDED (10 Items) ===== */
.bottom-nav-extended {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 43, 40, 0.98);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 2px;
  padding: 8px 5px;
  border-top: 1px solid rgba(229, 126, 58, 0.2);
  z-index: 1000;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.nav-item-ext {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: var(--text-dim);
  position: relative;
}

.nav-item-ext:hover {
  background: rgba(156, 235, 200, 0.1);
  color: var(--accent-teal);
  transform: translateY(-2px);
}

.nav-item-ext.active {
  background: rgba(156, 235, 200, 0.15);
  color: var(--accent-teal);
}

.nav-item-ext svg {
  flex-shrink: 0;
}

.nav-item-ext span {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

/* زر المزيد مع مؤشر */
.nav-item-ext.nav-more::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ===== EXTENDED MENU POPUP ===== */
.extended-menu-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.extended-menu-popup.active {
  pointer-events: auto;
  opacity: 1;
}

.extended-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.extended-menu-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  max-height: 75vh;
  background: var(--primary-dark);
  border-radius: 25px 25px 0 0;
  padding: 25px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.extended-menu-popup.active .extended-menu-content {
  transform: translateY(0);
}

.extended-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(229, 126, 58, 0.2);
}

.extended-menu-header h3 {
  color: var(--accent-teal);
  font-size: 20px;
  font-weight: bold;
}

.close-extended-menu {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}

.close-extended-menu:hover {
  background: var(--accent-teal);
  color: var(--primary-dark);
  transform: rotate(90deg);
}

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

.extended-menu-section h4 {
  color: var(--accent-teal);
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.extended-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-white);
  transition: all 0.3s;
  border: 1px solid transparent;
  margin-bottom: 8px;
}

.extended-menu-link:hover {
  background: rgba(156, 235, 200, 0.1);
  border-color: var(--accent-teal);
  transform: translateX(-3px);
}

.extended-menu-link .link-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.extended-menu-link span:last-child {
  font-size: 14px;
  font-weight: 500;
}

.extended-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--accent-teal);
  color: var(--primary-dark);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s;
}

.quick-action-btn:hover {
  background: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(156, 235, 200, 0.3);
}

/* Scrollbar */
.extended-menu-content::-webkit-scrollbar {
  width: 6px;
}

.extended-menu-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.extended-menu-content::-webkit-scrollbar-thumb {
  background: var(--accent-teal);
  border-radius: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bottom-nav-extended {
    grid-template-columns: repeat(5, 1fr);
  }

  .nav-item-ext:nth-child(n + 6) {
    display: none;
  }

  .nav-item-ext.nav-more {
    display: flex;
  }
}

@media (max-width: 768px) {
  .bottom-nav-extended {
    grid-template-columns: repeat(5, 1fr);
    padding: 6px 3px;
  }

  .nav-item-ext {
    padding: 6px 2px;
  }

  .nav-item-ext span {
    font-size: 9px;
  }

  .nav-item-ext svg {
    width: 18px;
    height: 18px;
  }

  .extended-menu-grid {
    grid-template-columns: 1fr;
  }

  .extended-menu-content {
    padding: 20px 15px;
    max-height: 80vh;
  }

  .extended-quick-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bottom-nav-extended {
    grid-template-columns: repeat(5, 1fr);
  }

  .nav-item-ext span {
    font-size: 8px;
  }

  .extended-menu-header h3 {
    font-size: 18px;
  }

  .extended-menu-link {
    padding: 10px;
  }

  .quick-action-btn {
    font-size: 12px;
    padding: 10px;
  }
}

/* إخفاء القائمة القديمة على الصفحات الفرعية */
.bottom-nav {
  display: none;
}
/* تحسينات إضافية للقائمة الموسعة */

.extended-menu-note {
  background: rgba(156, 235, 200, 0.1);
  border: 1px solid rgba(156, 235, 200, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  text-align: center;
}

.extended-menu-note p {
  color: var(--accent-teal);
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}

/* تمييز العناصر في القائمة المنبثقة */
.extended-menu-link.main-page {
  background: rgba(156, 235, 200, 0.08);
  border: 1px solid rgba(229, 126, 58, 0.2);
}

/* تحسين عرض الأيقونات في الموبايل */
@media (max-width: 768px) {
  .nav-item-ext span {
    font-size: 8.5px;
    max-width: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ir-highlights,
  .invest-reasons,
  .ratios-grid,
  .docs-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .calendar-view {
    grid-template-columns: 1fr;
  }
}

/* تحسين العرض على الشاشات الصغيرة جداً */
@media (max-width: 380px) {
  .bottom-nav-extended {
    grid-template-columns: repeat(5, 1fr);
    padding: 5px 2px;
  }

  .nav-item-ext {
    padding: 5px 1px;
  }

  .nav-item-ext svg {
    width: 16px;
    height: 16px;
  }

  .nav-item-ext span {
    font-size: 7.5px;
  }

  /* إخفاء بعض العناصر على الشاشات الصغيرة جداً */
  .nav-item-ext:nth-child(n + 6):not(.nav-more) {
    display: none;
  }
}

/* تأثير خاص للعناصر الرئيسية */
.nav-item-ext:nth-child(-n + 9) {
  position: relative;
}

.nav-item-ext:nth-child(-n + 9):hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--accent-teal);
  border-radius: 2px;
}

/* تحسين ترتيب العناصر في التابلت */
@media (max-width: 1024px) and (min-width: 769px) {
  .bottom-nav-extended {
    grid-template-columns: repeat(5, 1fr);
  }

  /* إظهار أول 4 عناصر + المزيد */
  .nav-item-ext:nth-child(n + 6):not(.nav-more) {
    display: none;
  }

  .nav-item-ext.nav-more {
    display: flex;
  }
}

/* تحسين الظهور على الشاشات العريضة */
@media (min-width: 1400px) {
  .bottom-nav-extended {
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
  }

  .nav-item-ext {
    padding: 10px 8px;
  }

  .nav-item-ext span {
    font-size: 11px;
  }
}
/* ===== تحديث متغيرات الألوان الرئيسية ===== */

:root {
  /* ألوان مستوحاة من الشعار */
  --primary-dark: #4a4a4a; /* اللون الرمادي من الشعار */
  --primary-medium: #5a5a5a;
  --primary-light: #6a6a6a;
  --accent-orange: #ff8c42; /* اللون البرتقالي من الشعار */
  --accent-orange-light: #ffad70;
  --accent-orange-dark: #e67530;
  --text-white: #ffffff;
  --text-gray: #d1d1d1;
  --text-dim: #b0b0b0;
  --glass-bg: rgba(74, 74, 74, 0.05);
  --border-color: rgba(255, 140, 66, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.3);
}

/* ===== الخلفية الرئيسية ===== */
body {
  font-family: "Cairo", sans-serif;
  background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
  color: var(--text-white);
  margin: 0;
  padding: 0;
}

/* ===== HEADER ===== */
.main-header {
  background: rgba(74, 74, 74, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent-orange);
  box-shadow: 0 4px 20px rgba(255, 140, 66, 0.2);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.logo-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* شعار درب بالألوان الصحيحة */
.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent-orange);
  text-shadow: 0 2px 10px rgba(255, 140, 66, 0.3);
}

.header-btn {
  background: var(--accent-orange);
  border: 2px solid var(--accent-orange);
  color: white;
  font-weight: 600;
  transition: all 0.3s;
}

.header-btn:hover {
  background: var(--accent-orange-dark);
  border-color: var(--accent-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}

/* ===== SIDEBAR ===== */
.map-sidebar {
  background: rgba(74, 74, 74, 0.95);
  backdrop-filter: blur(10px);
  border-left: 2px solid var(--accent-orange);
}

.sidebar-title {
  color: var(--accent-orange);
  font-size: 24px;
  font-weight: bold;
}

.sidebar-subtitle {
  color: var(--text-dim);
}

/* ===== SEARCH BAR ===== */
.search-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.search-input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.2);
}

/* ===== FILTERS ===== */
.filter-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.filter-chip:hover {
  background: rgba(255, 140, 66, 0.2);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.filter-chip.active {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

/* ===== STATION CARD ===== */
.station-card {
  background: rgba(74, 74, 74, 0.6);
  border: 1px solid rgba(255, 140, 66, 0.2);
  transition: all 0.3s;
}

.station-card:hover {
  background: rgba(74, 74, 74, 0.8);
  border-color: var(--accent-orange);
  transform: translateX(-5px);
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.2);
}

.station-card.active {
  background: rgba(255, 140, 66, 0.15);
  border-color: var(--accent-orange);
  border-width: 2px;
}

.station-name {
  color: var(--text-white);
}

.station-location {
  color: var(--text-dim);
}

.station-status {
  background: var(--accent-orange);
  color: white;
}

.station-status.closed {
  background: #e74c3c;
}

.action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.action-btn:hover {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

/* ===== MAP CONTROLS ===== */
.map-control-btn {
  background: rgba(74, 74, 74, 0.95);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.map-control-btn:hover {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}

/* ===== CUSTOM MAP MARKERS ===== */
.custom-marker {
  background: var(--accent-orange);
  border: 3px solid white;
  box-shadow: 0 3px 15px rgba(255, 140, 66, 0.5);
}

.custom-marker:hover {
  box-shadow: 0 5px 25px rgba(255, 140, 66, 0.7);
}

/* ===== MAP POPUP ===== */
.leaflet-popup-content-wrapper {
  background: var(--primary-dark);
  color: white;
  border: 2px solid var(--accent-orange);
}

.leaflet-popup-tip {
  background: var(--primary-dark);
}

.popup-title {
  color: var(--accent-orange);
}

.popup-location {
  color: var(--text-dim);
}

.popup-btn {
  background: var(--accent-orange);
  color: white;
  border: none;
}

.popup-btn:hover {
  background: var(--accent-orange-dark);
}

/* ===== 360 VIEWER ===== */
.viewer-360-modal {
  background: rgba(0, 0, 0, 0.95);
}

.viewer-title {
  color: var(--accent-orange);
}

.close-viewer-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.3);
}

.close-viewer-btn:hover {
  background: var(--accent-orange);
  color: white;
}

.viewer-controls {
  background: rgba(74, 74, 74, 0.95);
  border: 1px solid rgba(255, 140, 66, 0.3);
}

.viewer-control-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.2);
  color: var(--text-white);
}

.viewer-control-btn:hover,
.viewer-control-btn.active {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
}

.scene-thumbnail {
  border: 2px solid transparent;
}

.scene-thumbnail:hover {
  border-color: var(--accent-orange);
}

.scene-thumbnail.active {
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(255, 140, 66, 0.6);
}

/* ===== STATION INFO PANEL ===== */
.station-info-panel {
  background: rgba(74, 74, 74, 0.98);
  border: 2px solid var(--accent-orange);
}

.info-panel-title {
  color: var(--accent-orange);
}

.info-panel-location {
  color: var(--text-dim);
}

.info-row {
  border-bottom: 1px solid rgba(255, 140, 66, 0.2);
}

.info-label {
  color: var(--text-dim);
}

.panel-action-btn {
  background: var(--accent-orange);
  color: white;
}

.panel-action-btn:hover {
  background: var(--accent-orange-dark);
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.panel-action-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-orange);
  border: 1px solid var(--accent-orange);
}

.panel-action-btn.secondary:hover {
  background: rgba(255, 140, 66, 0.2);
}

/* ===== CHATBOT ===== */
.chatbot-toggle {
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-dark) 100%
  );
  box-shadow: 0 8px 30px rgba(255, 140, 66, 0.4);
}

.chatbot-toggle:hover {
  box-shadow: 0 12px 40px rgba(255, 140, 66, 0.6);
}

.chatbot-header {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-medium) 100%
  );
  border-bottom: 2px solid var(--accent-orange);
}

.bot-info h3 {
  color: var(--accent-orange);
}

.status-dot {
  background: var(--accent-orange);
}

.quick-action:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: white;
}

.bot-message .message-bubble {
  background: rgba(74, 74, 74, 0.8);
  color: white;
  border: 1px solid rgba(255, 140, 66, 0.3);
}

.user-message .message-bubble {
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-dark) 100%
  );
  color: white;
}

.send-btn {
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-dark) 100%
  );
  color: white;
}

.send-btn:hover {
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

.message-button {
  background: var(--accent-orange);
  color: white;
}

.message-button:hover {
  background: var(--accent-orange-dark);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

/* ===== SCROLLBAR ===== */
.stations-list::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
}

.chatbot-input::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
}

/* ===== LOADING ===== */
.loading-spinner {
  border: 4px solid rgba(255, 140, 66, 0.2);
  border-top-color: var(--accent-orange);
}

/* ===== NOTIFICATIONS ===== */
.update-banner {
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-dark) 100%
  );
  color: white;
}

.notification-prompt {
  background: rgba(74, 74, 74, 0.98);
  border: 2px solid var(--accent-orange);
}

.prompt-text h3 {
  color: var(--accent-orange);
}

.btn-enable {
  background: var(--accent-orange);
  color: white;
}

.btn-enable:hover {
  background: var(--accent-orange-dark);
  box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.install-prompt {
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-dark) 100%
  );
}

.btn-install {
  background: var(--primary-dark);
  color: var(--accent-orange);
}

.btn-install:hover {
  background: var(--primary-medium);
}

/* ===== FOOTER (إذا وجد) ===== */
.footer {
  background: var(--primary-dark);
  border-top: 2px solid var(--accent-orange);
  color: var(--text-white);
}

.footer-title {
  color: var(--accent-orange);
}

.footer a {
  color: var(--text-dim);
}

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

/* ===== BUTTONS العامة ===== */
button:not(.header-btn):not(.action-btn):not(.send-btn) {
  background: var(--accent-orange);
  color: white;
  border: none;
}

button:not(.header-btn):not(.action-btn):not(.send-btn):hover {
  background: var(--accent-orange-dark);
}

/* ===== LINKS العامة ===== */
a {
  color: var(--accent-orange);
  text-decoration: none;
}

a:hover {
  color: var(--accent-orange-light);
}

/* ===== GRADIENTS الإضافية ===== */
.gradient-orange {
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-dark) 100%
  );
}

.gradient-gray {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-medium) 100%
  );
}

/* ===== SHADOWS ===== */
.shadow-orange {
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.3);
}

.shadow-orange-hover:hover {
  box-shadow: 0 8px 30px rgba(255, 140, 66, 0.5);
}

/* ===== تحديث شعار SVG ===== */
.logo-icon svg path:first-child {
  fill: var(--primary-dark); /* الجزء الرمادي */
}

.logo-icon svg path:last-child {
  fill: var(--accent-orange); /* الجزء البرتقالي */
}

/* ===== ANIMATIONS ===== */
@keyframes glow-orange {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 140, 66, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 140, 66, 0.8);
  }
}

.glow-animation {
  animation: glow-orange 2s infinite;
}

/* ===== HOVER EFFECTS ===== */
.hover-orange:hover {
  color: var(--accent-orange);
  transition: color 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* ===== BORDERS ===== */
