/* ==========================================================================
   WISE PASHA GROUP — STYLESHEET (ENLARGED LOGOS & REFINED HEADERS)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette Tokens */
  --bg-primary: #0B192C;
  --bg-secondary: #070F1B;
  --bg-card: rgba(15, 33, 55, 0.7);
  --bg-glass: rgba(11, 25, 44, 0.92);
  
  --crimson-primary: #7A1C22;
  --crimson-bright: #9E1B22;
  --crimson-glow: rgba(122, 28, 34, 0.4);

  --gold-primary: #C5A059;
  --gold-light: #E5C378;
  --gold-glow: rgba(197, 160, 89, 0.3);

  --steel-slate: #8E9AA8;
  --steel-light: #CBD5E1;
  --steel-dark: #334155;

  --text-primary: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #8E9AA8;

  --border-light: rgba(197, 160, 89, 0.2);
  --border-active: rgba(197, 160, 89, 0.6);

  /* Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Layout */
  --max-width: 1280px;
  --nav-height: 110px; /* Expanded for Large Prominent Logo */
  --ticker-height: 42px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Core Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-primary);
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   HEADER & TICKER BAR
   -------------------------------------------------------------------------- */
.ticker-bar {
  background-color: var(--bg-secondary);
  height: var(--ticker-height);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 100;
  font-size: 0.82rem;
  font-weight: 500;
}

.ticker-label {
  background: var(--crimson-primary);
  color: #fff;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 2px 0 10px rgba(0,0,0,0.5);
}

.ticker-label .pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: scrollTicker 45s linear infinite;
  padding-left: 20px;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--steel-light);
}

.ticker-item .sym {
  font-weight: 700;
  color: var(--gold-primary);
}

.ticker-item .price {
  font-weight: 600;
  color: var(--text-primary);
}

.ticker-item .change.up { color: #22c55e; }
.ticker-item .change.down { color: #ef4444; }

/* Navbar with Significantly Larger Prominent Logo */
.navbar {
  height: var(--nav-height);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
}

/* SIGNIFICANTLY ENLARGED LOGO AT TOP OF PAGE */
.brand-logo img {
  height: 96px;
  width: auto;
  transition: transform var(--transition-fast);
}

.brand-logo img:hover {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
  padding: 6px 0;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-btn {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-normal);
}

.nav-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 80px 24px 100px;
  background: radial-gradient(circle at 50% 20%, rgba(122, 28, 34, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(197, 160, 89, 0.08) 0%, transparent 50%);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-title span {
  color: var(--gold-primary);
  background: linear-gradient(135deg, #F3E5AB 0%, #C5A059 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 18px;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--crimson-primary) 0%, var(--crimson-bright) 100%);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px var(--crimson-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158, 27, 34, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Hero Spec Card */
.hero-widget-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.widget-title {
  font-size: 0.95rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.spec-row .label { color: var(--text-muted); }
.spec-row .val { font-weight: 600; color: var(--text-primary); }

/* --------------------------------------------------------------------------
   SECTIONS & GRID SYSTEM
   -------------------------------------------------------------------------- */
.section {
  padding: 90px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

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

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--crimson-bright);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-primary);
  opacity: 0;
  transition: var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-primary);
  font-size: 1.4rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   INTERACTIVE MAP & FOOTPRINT SECTION (Abu Dhabi Specified)
   -------------------------------------------------------------------------- */
.footprint-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hub-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hub-card {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--gold-primary);
  padding: 18px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hub-card.ankara { border-left-color: var(--crimson-bright); }
.hub-card.abudhabi { border-left-color: #f59e0b; }
.hub-card.bishkek { border-left-color: #38bdf8; }

.hub-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hub-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   FOOTER (With Large Readable Logo)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 60px 24px 30px;
  margin-top: auto;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* SIGNIFICANTLY ENLARGED LOGO AT BOTTOM OF PAGE */
.footer-brand img {
  height: 88px;
  width: auto;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 340px;
}

.footer-heading {
  font-size: 0.95rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 9, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 540px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .footprint-container { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.1rem; }
  .footer-container { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .brand-logo img { height: 70px; }
}
