/* style.css - Askari Aviation Global Styles */

:root {
  --dark-blue:    #0a1d37;
  --medium-blue:  #0f2a50;
  --accent-gold:  #d4af37;
  --accent-blue:  #1e40af;
  --hover-blue:   #3b82f6;
  --light-bg:     #f8f9fa;
  --light-gray:   #f1f5f9;
  --text-muted:   #6c757d;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* Navbar (used on almost all pages) */
.navbar-askari {
  background-color: rgba(10, 29, 55, 0.92) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.55rem;
  color: white !important;
}
/*
.nav-link {
  color: white !important;
  font-weight: 500;
  transition: color 0.25s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold) !important;
}
*/
/* Navbar links - default white, hover & active = gold */
.nav-link {
  color: white !important;           /* Force white as default */
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: var(--accent-gold) !important;   /* Gold on hover and when active */
  /*font-weight: 700;	*/
}

/* Optional: make the active link slightly bolder or underlined if desired */
.nav-link.active {
  /*  font-weight: 600;  */              /* uncomment if you want it bolder */
  /* text-decoration: underline; */     /* or subtle underline */
  /* text-underline-offset: 6px; */
}

.btn-book-now {
  background-color: var(--accent-blue);/*actual: var(--accent-blue)*/
  color: white;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  transition: all 0.25s;
}

.btn-book-now:hover {
  background-color: var(--hover-blue);
  transform: translateY(-1px);
}

/* Hero sections */
.hero {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.70)),
              center/cover no-repeat;
  min-height: 70vh;
  color: white;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  text-shadow: 0 4px 14px rgba(0,0,0,0.7);
  margin-bottom: 1.2rem;
}

.hero .lead {
  font-size: 1.4rem;
  max-width: 780px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Section titles */
.section-title {
  font-weight: 800;
  color: var(--dark-blue);
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--accent-gold);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* Cards */
.card-askari {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.35s, box-shadow 0.35s;
  background: white;
}

.card-askari:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.stat-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-icon {
  font-size: 3.2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

/* Buttons */
.btn-askari {
  background-color: var(--dark-blue);
  color: white;
  font-weight: 600;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  transition: all 0.25s;
}

.btn-askari:hover {
	color: white;
	
  background-color: var(--hover-blue); /*#0c2549;*/
  transform: translateY(-1px);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--dark-blue);
  font-weight: 600;
}

.btn-gold:hover {
  background-color: #e0c04e;
}

/* Footer */
.footer-askari {
  background: var(--dark-blue);
  color: #ccc;
  padding: 5rem 0 2.5rem;
}

.footer-brand {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: white;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: white;
}

.social-icons a {
  color: white;
  font-size: 1.6rem;
  margin-right: 1.3rem;
  transition: transform 0.2s;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

/* Misc */
.text-gold { color: var(--accent-gold) !important; }
.bg-light-gray { background-color: var(--light-gray); }

/* FOR ABOUT.PHP*/
/* Timeline (for About page) */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0;
  bottom: -3rem;
  width: 3px;
  background: var(--accent-gold);
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
}

.timeline-year {
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.value-icon {
  font-size: 3.5rem;
  color: var(--dark-blue);
  margin-bottom: 1.2rem;
}

.success { background:#d4edda; color:#155724; padding:15px; border-radius:4px; margin:20px 0; }
.error   { background:#f8d7da; color:#721c24;  padding:15px; border-radius:4px; margin:20px 0; }