/* ============================================================
   Aurora Asset Management - Template 9
   Color Palette: Deep Navy #0B1D3A, Gold #D4A843, White, #F5F6FA
   Fonts: Playfair Display + Inter
   ============================================================ */

:root {
  --primary: #0B1D3A;
  --primary-light: #152C54;
  --gold: #D4A843;
  --gold-light: #E8C96A;
  --gold-dark: #B8902E;
  --white: #FFFFFF;
  --light: #F5F6FA;
  --gray: #6C757D;
  --gray-dark: #343A40;
  --border: #E0E3E8;
  --shadow: 0 4px 20px rgba(11, 29, 58, 0.08);
  --shadow-lg: 0 10px 40px rgba(11, 29, 58, 0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

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

/* ========== NAVBAR ========== */
.navbar {
  background: var(--primary) !important;
  padding: 16px 0;
  transition: var(--transition);
  z-index: 1050;
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 1px;
}
.navbar-brand span { color: var(--white); font-size: 0.75rem; display: block; font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: 2px; }
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 18px !important;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border-radius: 6px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
  background: rgba(212, 168, 67, 0.08);
}
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(11,29,58,0.88), rgba(11,29,58,0.7)), url('../images/hero-banner.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(255,255,255,0.05), transparent);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 3.8rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  font-size: 1.2rem;
  opacity: 0.85;
  max-width: 600px;
  margin-bottom: 32px;
}
.hero .btn-gold {
  background: var(--gold);
  color: var(--primary);
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.hero .btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,168,67,0.3);
}
.hero .btn-outline-white {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  background: transparent;
}
.hero .btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ========== SECTION COMMONS ========== */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .subtitle {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-header h2 { font-size: 2.8rem; margin-bottom: 16px; }
.section-header .divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 2px;
}
.section-header p {
  color: var(--gray);
  max-width: 600px;
  margin: 16px auto 0;
}

/* ========== ABOUT ========== */
.about-section { background: var(--light); }
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-image:hover img { transform: scale(1.03); }
.about-content { padding-left: 20px; }
.about-features { margin-top: 30px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.about-feature .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212,168,67,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature .icon i { font-size: 1.3rem; color: var(--gold); }
.about-feature h5 { font-size: 1.1rem; margin-bottom: 4px; }
.about-feature p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ========== SERVICES ========== */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(212,168,67,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.service-card .icon-wrapper i {
  font-size: 2rem;
  color: var(--gold);
}
.service-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ========== MARKET INSIGHTS ========== */
.market-section { background: var(--primary); color: var(--white); }
.market-section .section-header h2 { color: var(--white); }
.market-section .section-header p { color: rgba(255,255,255,0.65); }
.insight-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
}
.insight-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.insight-card .stock-symbol {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.insight-card .stock-name { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 16px; }
.insight-card .stock-price { font-size: 2rem; font-weight: 700; color: var(--white); }
.insight-card .stock-change { font-size: 0.9rem; margin-bottom: 16px; }
.insight-card .stock-change.up { color: #34D399; }
.insight-card .stock-change.down { color: #F87171; }
.insight-card .stock-meta { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

/* ========== TEAM ========== */
.team-section { background: var(--white); }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card .team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.team-card .team-info { padding: 24px 20px; }
.team-card .team-info h4 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .team-info .role {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card .team-info p { color: var(--gray); font-size: 0.85rem; }

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, rgba(11,29,58,0.92), rgba(11,29,58,0.85)), url('../images/hero-alt.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 16px; }
.cta-section p { opacity: 0.8; max-width: 500px; margin: 0 auto 32px; }
.cta-section .btn-gold {
  background: var(--gold);
  color: var(--primary);
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}
.cta-section .btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,168,67,0.3);
}

/* ========== CONTACT ========== */
.contact-section { background: var(--light); }
.contact-info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.contact-item .detail { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.contact-item .detail strong { color: var(--white); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card .form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.contact-form-card .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
}
.contact-form-card .btn-submit {
  background: var(--gold);
  color: var(--primary);
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
}
.contact-form-card .btn-submit:hover {
  background: var(--gold-light);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold) !important;
  font-weight: 700;
}
.footer h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.footer a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer a:hover { color: var(--gold); }
.footer .social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer .social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(11,29,58,0.9), rgba(11,29,58,0.75)), url('../images/hero-alt.jpg') center/cover no-repeat;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: 3rem; }
.page-hero .breadcrumb { margin-bottom: 0; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ========== MARKET TABLE ========== */
.market-table-section { background: var(--white); }
.market-table {
  border-collapse: separate;
  border-spacing: 0 8px;
}
.market-table thead th {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.market-table thead th:first-child { border-radius: 8px 0 0 8px; }
.market-table thead th:last-child { border-radius: 0 8px 8px 0; }
.market-table tbody tr {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: var(--transition);
}
.market-table tbody tr:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.market-table tbody td {
  padding: 14px 16px;
  border: none;
  vertical-align: middle;
  font-size: 0.9rem;
}
.market-table tbody td:first-child { border-radius: 8px 0 0 8px; }
.market-table tbody td:last-child { border-radius: 0 8px 8px 0; }
.market-table .up { color: #059669; font-weight: 600; }
.market-table .down { color: #DC2626; font-weight: 600; }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .hero h1 { font-size: 2.5rem; }
  .hero { min-height: 70vh; }
  section { padding: 60px 0; }
  .section-header h2 { font-size: 2rem; }
  .about-content { padding-left: 0; margin-top: 30px; }
  .page-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 767px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero .btn-gold, .hero .btn-outline-white {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  section { padding: 50px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .cta-section h2 { font-size: 1.8rem; }
}
