/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Images */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(2px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
  backdrop-filter: blur(2px);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1,
.hero h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.hero .highlight {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtext {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 1.2em;
  margin-top: 20px;
}

.service-image {
  height: 200px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  margin: -20px -20px 20px -20px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}
.rounded-image {
  border-radius: 12px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  padding: 100px 0;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

/* Navigation */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  border-radius: 4px;
  z-index: 1000;
  padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}

.dropdown-menu a:hover {
  background-color: #f5f5f5;
  color: #000;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 20px;
  }

  .dropdown-menu a {
    color: #fff;
    padding: 8px 0;
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: #fff;
  }
}
.navbar {
  background-color: #fff;
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  color: #333;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: auto;
}

.logo-icon {
  background: #f5a623;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
  box-shadow: 0 4px 10px rgba(245, 166, 35, 0.3);
}

.arrow {
  color: #fff;
  font-size: 1rem;
  position: absolute;
  right: -3px;
  bottom: -3px;
  transform: rotate(-45deg);
}

.logo-text {
  color: #333;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  margin-right: 2rem;
}

.nav-links li:not(:last-child) {
  margin-right: 2.5rem;
}

.nav-link {
  color: #666;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f5a623;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #f5a623;
}

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

.quote-btn {
  background-color: #f5a623;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(245, 166, 35, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quote-btn:hover {
  background-color: #e69512;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(245, 166, 35, 0.3);
  color: #fff;
  text-decoration: none;
}

/* Quote Section */
.price-quote {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.price-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h1v1H0V0zm4 4h1v1H4V4zm4 4h1v1H8V8zm4 4h1v1h-1v-1zm4 4h1v1h-1v-1z" fill="%23f5a623" fill-opacity="0.1"/></svg>');
  pointer-events: none;
  opacity: 0.5;
}

.price-quote .container {
  position: relative;
  z-index: 1;
}

.price-quote h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 700;
}

.quote-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.quote-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-form label {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quote-form input {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  background: #fff;
}

.weight-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.weight-input-group input {
  padding-right: 3rem;
}

.weight-unit {
  position: absolute;
  right: 1rem;
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
  pointer-events: none;
}

.quote-form input:focus {
  border-color: #f5a623;
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.quote-form input::-webkit-calendar-picker-indicator {
  opacity: 0.6;
  cursor: pointer;
}

.quote-form input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.quote-form input[type="number"] {
  -moz-appearance: textfield;
}

.quote-form input[type="number"]::-webkit-outer-spin-button,
.quote-form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quote-form button {
  grid-column: 1 / -1;
  background: #f5a623;
  color: #fff;
  border: none;
  padding: 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
}

.quote-form button:hover {
  background: #e69512;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
}

@media (max-width: 768px) {
  .price-quote {
    padding: 3rem 0;
    margin-top: 2rem;
  }

  .quote-form {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .price-quote h2 {
    font-size: 2rem;
  }

  .quote-form button {
    padding: 1rem;
    margin-top: 0.5rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #373737 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(245, 166, 35, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(245, 166, 35, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  gap: 4rem;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.icon-item:not(:last-child):after {
  content: "";
  position: absolute;
  right: -2rem;
  top: 50%;
  width: 4px;
  height: 4px;
  background-color: rgba(245, 166, 35, 0.3);
  border-radius: 50%;
  transform: translateX(50%);
}

.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.text {
  font-weight: 600;
  letter-spacing: 2px;
}

.hero-text {
  margin-bottom: 4rem;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-text h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtext {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 1px;
}

.highlight {
  color: #f5a623;
}

/* Tracking Section */
.tracking-section {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.track-title {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.track-subtitle {
  color: #666;
  margin-bottom: 2rem;
}

.tracking-form {
  display: flex;
  gap: 1rem;
}

.tracking-form form {
  display: flex;
  width: 100%;
  gap: 1rem;
}

.tracking-form input {
  flex: 1;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.tracking-form button {
  background-color: #f5a623;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.tracking-form button:hover {
  background-color: #e69512;
} /* Services Section */
.services {
  padding: 6rem 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f5a623, #f7b733);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.1) 0%,
    rgba(245, 166, 35, 0.05) 100%
  );
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.material-icon {
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  color: #f5a623;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.service-link:hover {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .services {
    padding: 4rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 2rem;
  }
}

/* Quote Section */
.price-quote {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.price-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h1v1H0V0zm4 4h1v1H4V4zm4 4h1v1H8V8zm4 4h1v1h-1v-1zm4 4h1v1h-1v-1z" fill="%23f5a623" fill-opacity="0.1"/></svg>');
  pointer-events: none;
  opacity: 0.5;
}

.price-quote h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 700;
}

.quote-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.quote-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-form label {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quote-form input {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.quote-form input:focus {
  border-color: #f5a623;
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.quote-form input::-webkit-calendar-picker-indicator {
  opacity: 0.6;
  cursor: pointer;
}

.quote-form input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.quote-form button {
  grid-column: 1 / -1;
  background: #f5a623;
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quote-form button:hover {
  background: #e69512;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
}

@media (max-width: 768px) {
  .quote-form {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .price-quote h2 {
    font-size: 2rem;
  }
}

/* Tracking Results */
.tracking-result {
  margin-top: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tracking-result.error {
  background: #fee;
  color: #c00;
}

/* About Page */
.about-page {
  padding: 4rem 0;
}

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

.value-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-info .info-item {
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background: #2c3e50;
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

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

.footer-section h3 {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand .logo-icon {
  background: #f5a623;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-tagline {
  color: #a0aec0;
  margin-top: 1rem;
  font-size: 0.95rem;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #f5a623;
}

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

.footer-contact li {
  color: #cbd5e0;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: #a0aec0;
  font-size: 0.9rem;
  margin: 0;
}

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

.footer-social a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
}

.footer-social a:hover {
  color: #f5a623;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 0 1.5rem;
  }

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

  .footer-section:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.mobile-menu-btn .bar {
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .bar:first-child {
  transform: translateY(9.5px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .bar:last-child {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
  }

  .mobile-menu-btn {
    display: flex;
    order: 1;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #fff;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .quote-btn {
    order: 0;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    width: auto;
    min-width: 120px;
    margin-right: 1rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.25);
  }

  .quote-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 4px rgba(245, 166, 35, 0.2);
  }

  .nav-wrapper.active {
    right: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 1.5rem;
  }

  .nav-links li {
    margin: 0 !important;
  }

  .nav-link {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
  }

  .quote-btn {
    display: inline-block;
    margin-top: 2rem;
    width: 100%;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    padding: 4rem 0;
  }
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 2.5rem;
  }

  .tracking-form form {
    flex-direction: column;
  }

  .tracking-form button {
    width: 100%;
  }

  .hero-icons {
    flex-direction: column;
    gap: 1rem;
  }

  .icon-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .tracking-section {
    padding: 1rem;
  }
}
