/* ============================================
   MODERN SUPPORT PAGES - REVAMPED 2025
   Mobile-first, contemporary design system
============================================ */

/* -----------------------------------------------------------
   CSS VARIABLES - Easy theming
----------------------------------------------------------- */
:root {
  --navy-primary: #0D1E4E;
  --navy-light: #1a2d5f;
  --gold-accent: #FFCC00;
  --gold-hover: #e6b800;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-height: 80px;
}

/* -----------------------------------------------------------
   BASE RESET & TYPOGRAPHY
----------------------------------------------------------- */
* {
  box-sizing: border-box;
}

body {
 
  padding-top: var(--navbar-height);
  
}

/* -----------------------------------------------------------
   HERO SECTION - Modern gradient overlay
----------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
  overflow: hidden;
  padding: 80px 20px;
  padding-bottom: 20px;
  margin-bottom: 60px;
}

/* Animated gradient overlay */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;


}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-lead {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 400;
}

/* -----------------------------------------------------------
   CONTENT STRUCTURE
----------------------------------------------------------- */
.content-wrapper {
  padding: 80px 0;
}

.bid-section,
.business-section,
.policy-section {
  margin-bottom: 60px;
}

.content-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 50px);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

/* Subtle accent line on hover */
.content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-accent), var(--gold-hover));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.content-box:hover::before {
  transform: scaleX(1);
}

.content-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.content-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

/* -----------------------------------------------------------
   ICON LIST - Modern card-style items
----------------------------------------------------------- */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.icon-list-item:hover {
  background: var(--white);
  border-color: var(--gold-accent);
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.list-icon {
  color: var(--gold-accent);
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 204, 0, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.icon-list-item:hover .list-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-accent);
  color: var(--navy-primary);
}

.icon-list-item strong {
  font-size: 1.15rem;
  color: var(--navy-primary);
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.icon-list-item small {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.6;
  display: block;
}

/* -----------------------------------------------------------
   BUTTONS - Modern pill style
----------------------------------------------------------- */
.btn-custom {
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-hover) 100%);
  color: var(--navy-primary);
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-custom:hover::before {
  left: 100%;
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}

.btn-custom:active {
  transform: translateY(-1px);
}

/* -----------------------------------------------------------
   MISSION & VISION CARDS (About page)
----------------------------------------------------------- */
.mv-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
  height: 100%;
}

.mv-card:hover {
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.mv-card .list-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
}

.mv-card strong {
  font-size: 1.25rem;
  color: var(--navy-primary);
  display: block;
  margin-bottom: 12px;
}

.mv-card p {
  margin: 0;
  color: var(--text-medium);
  line-height: 1.7;
}

/* -----------------------------------------------------------
   ANIMATIONS
----------------------------------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* -----------------------------------------------------------
   RESPONSIVE DESIGN - Mobile First
----------------------------------------------------------- */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-lead {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  .content-wrapper {
    padding: 50px 0;
  }

  .content-box {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .icon-list {
    gap: 16px;
  }

  .icon-list-item {
    padding: 20px;
    gap: 16px;
  }

  .list-icon {
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
  }

  .icon-list-item strong {
    font-size: 1.05rem;
  }

  .icon-list-item small {
    font-size: 0.95rem;
  }

  .btn-custom {
    padding: 14px 32px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 320px;
  }

  .mv-card {
    padding: 24px;
    gap: 16px;
  }

  .bid-section,
  .business-section,
  .policy-section {
    margin-bottom: 40px;
  }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
  .hero-section {
    min-height: 45vh;
    padding: 50px 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .content-box {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }

  .section-title {
    font-size: 1.35rem;
  }

  .icon-list-item {
    padding: 16px;
    gap: 12px;
    flex-direction: row;
    align-items: flex-start;
  }

  .list-icon {
    font-size: 1.4rem;
    width: 32px;
    height: 32px;
    margin-top: 2px;
  }

  .icon-list-item strong {
    font-size: 1rem;
  }

  .icon-list-item small {
    font-size: 0.9rem;
  }

  .btn-custom {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .mv-card {
    padding: 20px;
    gap: 12px;
  }

  .mv-card .list-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .mv-card strong {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .content-box {
    padding: 20px 14px;
  }

  .icon-list-item {
    padding: 14px;
  }
}

/* -----------------------------------------------------------
   UTILITY CLASSES
----------------------------------------------------------- */
.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .mt-5 {
    margin-top: 2rem;
  }
}

/* -----------------------------------------------------------
   ACCESSIBILITY IMPROVEMENTS
----------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.btn-custom:focus,
.icon-list-item:focus {
  outline: 3px solid var(--gold-accent);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .content-box {
    border: 2px solid var(--navy-primary);
  }
  
  .icon-list-item {
    border: 1px solid var(--text-medium);
  }
}