/* ReGuide Static Site Styles */

/* ========== Reset & Base Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: #333;
}

/* ========== Color Variables ========== */
:root {
  --navy: #002147;
  --gold: #DAA520;
  --navy-light: #003a6b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --white: #ffffff;
}

/* ========== Custom Selection ========== */
::selection {
  background-color: var(--gold);
  color: var(--navy);
}

/* ========== Container ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========== Header Styles ========== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--navy);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.logo {
  height: 64px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--navy);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  
  .nav-links.active {
    display: flex;
  }
}

/* ========== Footer Styles ========== */
footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.footer-section p,
.footer-section ul li {
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-700);
  color: var(--gray-400);
}

/* ========== Button Styles ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-navy {
  background-color: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 33, 71, 0.85), rgba(0, 33, 71, 0.85));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .highlight {
  color: var(--gold);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.25rem;
  }
}

/* ========== Section Styles ========== */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: var(--navy);
  margin-bottom: 4rem;
}

.section-title .highlight {
  color: var(--gold);
}

.bg-white {
  background-color: var(--white);
}

.bg-gray {
  background-color: var(--gray-50);
}

.bg-navy {
  background-color: var(--navy);
  color: var(--white);
}

.bg-gradient-navy {
  background: linear-gradient(to right, var(--navy), var(--navy-light));
  color: var(--white);
}

.bg-gradient-gold {
  background: linear-gradient(to right, var(--gold), #c99410);
}

/* ========== Grid Layouts ========== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

/* ========== Card Styles ========== */
.card {
  background: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 3rem;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: center;
}

.card p {
  color: var(--gray-600);
  font-size: 1.125rem;
  text-align: center;
}

/* ========== Industry Cards ========== */
.industry-card {
  position: relative;
  height: 256px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: scale(1.05);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--navy), rgba(0, 33, 71, 0.5), transparent);
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.industry-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.industry-card:hover .industry-hover {
  opacity: 0.2;
}

.industry-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ========== Form Styles ========== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--gray-700);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ========== List Styles ========== */
.list-check {
  list-style: none;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.list-check li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: bold;
}

.list-bullet {
  list-style: none;
}

.list-bullet li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.list-bullet li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* ========== Badge Styles ========== */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--navy);
  color: var(--white);
  border-radius: 9999px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.badge:hover {
  background-color: var(--gold);
  color: var(--navy);
}

/* ========== Search Bar ========== */
.search-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3.5rem;
  border: 2px solid var(--gold);
  border-radius: 0.5rem;
  font-size: 1.125rem;
}

.search-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.3);
}

/* ========== Filter Buttons ========== */
.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  background-color: var(--gray-200);
  color: var(--gray-700);
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--navy);
  color: var(--white);
  transform: scale(1.05);
}

/* ========== Utility Classes ========== */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-navy {
  color: var(--navy);
}

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

.text-gray {
  color: var(--gray-600);
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.max-w-4xl {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-5xl {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.rounded {
  border-radius: 0.5rem;
}

.shadow-xl {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.border-gold {
  border: 4px solid var(--gold);
}

.border-navy {
  border: 4px solid var(--navy);
}

/* ========== Profile Page Specific ========== */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
}

.profile-sidebar {
  position: sticky;
  top: 100px;
}

.profile-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ========== Milestones Timeline ========== */
.timeline {
  max-width: 896px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.timeline-year {
  flex-shrink: 0;
  width: 96px;
}

.timeline-content {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: scale(1.05);
}

/* ========== Values Grid ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.value-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
  transform: scale(1.05);
}

.value-icon {
  color: var(--gold);
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ========== Contact Info Cards ========== */
.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  background-color: var(--gold);
  padding: 0.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== Responsive Design ========== */
@media (max-width: 640px) {
  .section-title {
    font-size: 2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
