/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* ==============================================
   SHEETLA FREIGHT - MODERN TRANSPORT WEBSITE
   Professional CSS Framework - Angular Version
   ============================================== */
/* CSS Custom Properties (Variables) */
:root {
  /* Brand Colors - Red, White, Black Theme */
  --primary-red: #DC2626;
  --primary-black: #000000;
  --primary-white: #FFFFFF;
  --accent-red: #EF4444;
  --secondary-gray: #6B7280;
  --soft-gray: #F3F4F6;
  --background-white: #FFFFFF;
  --background-light: #FAFAFA;
  /* Typography */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
  /* Border Radius */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==============================================
   RESET & BASE STYLES
   ============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--primary-black);
  background: var(--background-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  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;
}

a {
  color: var(--primary-red);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-red);
}

/* ==============================================
   LAYOUT UTILITIES
   ============================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

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

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

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

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

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

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

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

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

.mb-5 {
  margin-bottom: 3rem;
}

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

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

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

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

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

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.p-5 {
  padding: 3rem;
}

/* ==============================================
   HEADER & NAVIGATION
   ============================================== */
.header {
  background: var(--background-white);
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 2px solid var(--primary-red);
}

.header.scrolled {
  box-shadow: var(--shadow-medium);
}

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

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

.logo-text {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}

.logo-text .sheetla {
  color: var(--primary-black);
  background: var(--primary-white);
  padding: 6px 0px 2px 0;
  position: relative;
  font-style: normal;
}

.logo-text .sheetla::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-black);
}

.logo-text .freight {
  color: var(--primary-white);
  background: var(--primary-red);
  padding: 9px 1px;
  position: relative;
  font-style: italic;
  margin-left: 0;
  text-decoration: underline;
  margin-top: 3px;
}

.logo-text .freight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-white);
}

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

.nav-link {
  color: var(--primary-black);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-fast);
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-red);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tracking-input {
  display: flex;
  gap: 0.5rem;
}

.tracking-input input {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  width: 200px;
}

.tracking-input input:focus {
  outline: none;
  border-color: var(--primary-red);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-link {
  color: var(--primary-black);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-link:hover {
  color: var(--primary-red);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-black);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--primary-black);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  background: white;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--background-light);
  color: var(--primary-red);
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 1rem;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--primary-white);
}

.btn-primary:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: var(--primary-black);
  color: var(--primary-white);
}

.btn-secondary:hover {
  background: #ff0000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: #ffffff;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.btn-outline:hover {
  background: var(--primary-red);
  color: var(--primary-white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
  color: var(--primary-white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><path d="M0,0 L1000,100 L1000,0 Z"/></svg>') no-repeat bottom center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--primary-white);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: var(--primary-white);
}

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

.hero .btn-primary {
  background: var(--primary-white);
  color: var(--primary-black);
}

.hero .btn-primary:hover {
  background: var(--soft-gray);
  color: var(--primary-black);
}

.hero .btn-outline {
  color: #000000;
  border-color: var(--primary-white);
}

.hero .btn-outline:hover {
  background: var(--primary-white);
  color: var(--primary-red);
}

/* ==============================================
   CARDS
   ============================================== */
.card {
  background: var(--background-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  padding: 2rem;
  transition: var(--transition-normal);
  border: 1px solid #f1f5f9;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.card-subtitle {
  color: var(--secondary-gray);
  font-size: 1rem;
}

.card-body {
  margin-bottom: 1.5rem;
}

.card-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

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

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

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

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

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-black);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-control.is-invalid {
  border-color: var(--primary-red);
}

.invalid-feedback {
  color: var(--primary-red);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--primary-black);
  color: var(--background-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--background-white);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #dc3545;
  transition: var(--transition-fast);
  text-decoration: none;
}

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

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--background-white);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-red);
  color: var(--background-white);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: var(--primary-red);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--primary-red);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--background-white);
}

/* ==============================================
   UTILITIES
   ============================================== */
.text-primary {
  color: var(--primary-white);
}

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

.text-accent {
  color: var(--primary-red);
}

.text-success {
  color: var(--primary-red);
}

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

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

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

.bg-accent {
  background-color: var(--primary-red);
}

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

.border-primary {
  border-color: var(--primary-red);
}

.border-secondary {
  border-color: var(--secondary-gray);
}

.rounded {
  border-radius: var(--border-radius);
}

.rounded-lg {
  border-radius: var(--border-radius-lg);
}

.shadow {
  box-shadow: var(--shadow-light);
}

.shadow-lg {
  box-shadow: var(--shadow-medium);
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }
  .nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
  .header-actions {
    gap: 0.5rem;
  }
  .tracking-input input {
    width: 150px;
  }
  .tracking-form {
    display: none;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  .section {
    padding: 60px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .tracking-input {
    flex-direction: column;
  }
  .tracking-input input {
    width: 100%;
  }
  .card {
    padding: 1.5rem;
  }
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}
/* ==============================================
   ANIMATIONS
   ============================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in {
  animation: slideIn 0.5s ease-out;
}

.pulse {
  animation: pulse 2s infinite;
}

/* ==============================================
   COMPONENT SPECIFIC STYLES
   ============================================== */
.main-content {
  margin-top: 80px; /* Account for fixed header */
  min-height: calc(100vh - 80px);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
  color: var(--primary-white);
  padding: 120px 0 80px;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-white);
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  color: var(--primary-white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Error States */
.error-message {
  color: var(--primary-red);
  background: rgba(220, 38, 38, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-red);
  margin: 1rem 0;
}

.success-message {
  color: var(--primary-red);
  background: rgba(220, 38, 38, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-red);
  margin: 1rem 0;
}

/*# sourceMappingURL=styles.css.map*/