/* Main CSS File - Plain Hero Without Images */

/* CSS Variables - Updated Theme */
:root {
  --primary-navy: #061c39;
  --secondary-navy: #0a2447;
  --light-navy: #1a3a5c;
  --accent-yellow: #ffc000;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --border-color: #dee2e6;
  --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: var(--primary-navy);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-yellow);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-medium);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-navy);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 250px;
  box-shadow: var(--shadow-medium);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
  margin-top: 10px;
  border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background: var(--light-gray);
  color: var(--primary-navy);
}

/* Buttons - Updated to be more oval/rounded */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 25px; /* More oval/rounded */
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-yellow);
  color: var(--primary-navy);
  border-color: var(--accent-yellow);
}

.btn-primary:hover {
  background: #e6ac00;
  border-color: #e6ac00;
  color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.btn-outline:hover {
  background: var(--primary-navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-navy);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 30px; /* More oval for large buttons */
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-navy);
  transition: all 0.3s ease;
}

/* Hero Section - PLAIN WITHOUT IMAGES */
.hero {
  position: relative;
  min-height: 75vh; /* Reduced from 100vh to 75vh */
  max-height: 80vh; /* Added max height */
  display: flex;
  align-items: center;
  background: var(--primary-navy);
  color: var(--white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.diagonal-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.9) 0%, rgba(10, 36, 71, 0.8) 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 192, 0, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 192, 0, 0.3);
  font-size: 0.9rem;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  color: var(--accent-yellow);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.highlight-text {
  color: var(--accent-yellow);
  position: relative;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Compact Hero for Product Pages */
.hero-compact {
  min-height: 40vh !important;
  max-height: 50vh !important;
  padding: 80px 0 60px !important;
}

.hero-compact .hero-content {
  max-width: 700px;
  padding: 2rem 0 1rem 0;
  position: relative;
  z-index: 10;
}

.hero-compact .hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-compact .hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-compact .hero-actions {
  margin-bottom: 0;
}

/* Stats Banner */
.stats-banner {
  background: var(--light-gray);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Content Introduction Section */
.content-intro {
  padding: 4rem 0;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border-color);
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-size: 2rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.intro-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Products Showcase */
.products-showcase {
  padding: 5rem 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-yellow);
}

.product-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.product-icon svg {
  width: 30px;
  height: 30px;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-yellow);
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-link:hover {
  transform: translateX(5px);
  color: #e6ac00;
}

.link-icon {
  width: 16px;
  height: 16px;
}

/* Case Studies */
.case-studies {
  padding: 6rem 0;
  background: var(--light-gray);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  height: 500px;
}

.case-study-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.case-study-card.large {
  grid-row: span 2;
}

.case-study-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.case-study-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-study-content h3 {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.case-study-content h4 {
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.case-study-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.case-study-link {
  color: var(--accent-yellow);
  font-weight: 600;
  align-self: flex-start;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--primary-navy);
  color: var(--white);
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.brand-tagline {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--white);
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 192, 0, 0.2);
  color: var(--accent-yellow);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--accent-yellow);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh; /* Shorter on mobile */
    max-height: 70vh;
  }

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-compact {
    min-height: 35vh !important;
    max-height: 45vh !important;
    padding: 60px 0 40px !important;
  }

  .hero-compact .hero-title {
    font-size: 2.2rem;
  }

  .hero-compact .hero-description {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .case-study-card.large {
    grid-row: span 1;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .content-intro {
    padding: 3rem 0;
  }

  .intro-content h2 {
    font-size: 1.75rem;
  }

  .intro-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-compact {
    min-height: 30vh !important;
    max-height: 40vh !important;
    padding: 40px 0 30px !important;
  }

  .hero-compact .hero-title {
    font-size: 1.8rem;
  }
}
