/* NovintiX Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&family=Inter:wght@400;500&display=swap');

:root {
  --color-primary: #7C7C7D;
  --color-secondary: #1E2128;
  --color-text: #FFFFFF;
  --color-accent: #FFFFFF2B;
  --color-teal: #003C59;
  --color-orange: #F5A302;
  --color-gray-light: #D3D3DC;
  --color-gray-bg: #F8F8F9;
  --color-dark: #1E2128;
  --color-dark-alt: #32353E;
  --color-muted: #90A4AF;

  --font-heading: 'Rubik', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-max: 1280px;
  --border-radius: 25px;
  --border-radius-sm: 10px;
  --border-radius-btn: 50px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
  background-color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  line-height: 1.2;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
}

h2 {
  font-size: 39px;
  font-weight: 700;
  letter-spacing: -1.5px;
}

h3 {
  font-size: 31.25px;
  font-weight: 700;
  letter-spacing: -1.2px;
}

h4 {
  font-size: 25px;
  font-weight: 300;
  letter-spacing: -0.5px;
}

h5 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

h6 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-orange);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-teal);
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
  background: linear-gradient(113deg, var(--color-teal) 55%, var(--color-teal) 100%);
  border: none;
  border-radius: var(--border-radius-btn);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal) 100%);
  color: var(--color-text);
}

.section {
  padding: 5em 0;
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-text);
}

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

.text-center {
  text-align: center;
}

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

.card {
  background: var(--color-text);
  border-radius: var(--border-radius);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
  padding: 2em;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20, 24, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.site-navigation .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.menu-item > a {
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #e2e8f0;
  padding: 10px 0;
  display: block;
  transition: color 0.3s ease;
}

.menu-item > a:hover,
.menu-item.current > a {
  color: #f5a302;
}

.menu-item.has-children {
  position: relative;
}

.menu-item.has-children > a::after {
  content: "▾";
  margin-left: 5px;
  font-size: 10px;
  color: #94a3b8;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1f2937;
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.menu-item.has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu .menu-item a {
  padding: 10px 25px;
  font-size: 14px;
  color: #e2e8f0;
}

.sub-menu .menu-item a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #f5a302;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #f5a302;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f5a302;
  left: 0;
}

.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

/* Footer Styles */
.site-footer {
  background: #1e2128;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 380px;
}

.footer-logo img {
  display: block;
  height: auto;
  margin-left: -5px;
}

.footer-tagline {
  font-size: 12px;
  color: #f5a302;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  margin-top: 20px;
  font-size: 14px;
  color: #90a4af;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h5 {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  font-size: 14px;
  color: #90a4af;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #f5a302;
}

.contact-info li {
  margin-bottom: 15px;
}

.contact-info strong {
  display: block;
  font-size: 12px;
  color: #f5a302;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-info span {
  font-size: 14px;
  color: #90a4af;
}

.footer-bottom {
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #90a4af;
}

/* Responsive */
@media (max-width: 1024px) {
  h1 { font-size: 37px; }
  h2 { font-size: 31px; }
  h3 { font-size: 25px; }
  h4 { font-size: 21px; }
  h5 { font-size: 18px; }
  body { font-size: 15px; }

  .mobile-menu-toggle {
    display: block;
  }

  .site-navigation {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: #1f2937;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .site-navigation.active {
    transform: translateX(0);
  }

  .site-navigation .menu {
    flex-direction: column;
    gap: 0;
  }

  .menu-item > a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-item.has-children > a::after {
    color: #e2e8f0;
  }

  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    background: transparent;
    border: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

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

@media (max-width: 767px) {
  h1 { font-size: 28px; }
  h2 { font-size: 25px; }
  h3 { font-size: 22px; }
  h4 { font-size: 20px; }
  h5 { font-size: 16px; }
  body { font-size: 14px; }

  .section {
    padding: 3em 0;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
