@import url("./navbar.css");
@import url("./hero.css");
@import url("./cards.css");
@import url("./sections.css");
@import url("./footer.css");
@import url("./animations.css");

:root {
  --primary: #ff6b00;
  --secondary: #1a2b5f;
  --accent: #e85000;
  --dark: #0d1526;
  --light: #f5f7fa;
  --white: #ffffff;
  --gray: #6b7280;
  --text-dark: #1f2937;
  --gradient-hero: linear-gradient(135deg, #1a2b5f 0%, #0d1526 60%, #ff6b00 100%);
  --gradient-card: linear-gradient(180deg, rgba(26, 43, 95, 0) 0%, rgba(26, 43, 95, 0.95) 100%);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 20px 60px rgba(255, 107, 0, 0.25);
  --radius: 10px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

h4,
h5,
h6,
.nav-link,
.btn {
  font-family: "Rajdhani", sans-serif;
}

p {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.section-padding {
  padding: 5rem 0;
}

.section-bg-light {
  background: var(--light);
}

.section-bg-dark {
  background: var(--secondary);
}

.section-bg-darker {
  background: var(--dark);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary);
  display: inline-block;
  position: relative;
  margin-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  background: var(--primary);
  border-radius: 3px;
  margin-top: 10px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 700px;
}

.border-start-brand {
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
  color: var(--white);
}

.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  background: transparent;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--secondary);
}

.hero-compact {
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-compact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 43, 95, 0.92) 0%, rgba(13, 21, 38, 0.82) 100%);
}

.hero-compact .hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-item {
  font-family: "Rajdhani", sans-serif;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-item.active {
  color: var(--primary);
}

.form-control,
.form-select {
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.7rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }

  .hero-compact {
    min-height: 250px;
  }
}
