/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  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;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: #ff6b35;
  color: white;
}

.btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #1a1a1a;
}

.btn-outline {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.btn-outline:hover {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  background: #ff6b35;
  padding: 0.5rem;
  border-radius: 8px;
  color: white;
}

.logo-text h1 {
  font-size: 1.5rem;
  margin: 0;
  color: #1a1a1a;
}

.logo-text .tagline {
  font-size: 0.875rem;
  color: #4a4a4a;
  margin: 0;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ff6b35;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.language-switcher {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #f5f5f5;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.language-btn:hover {
  background: #e5e5e5;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e5e5;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.language-switcher:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-dropdown button {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 0.875rem;
}

.language-dropdown button:hover {
  background: #f5f5f5;
}

.language-dropdown button:first-child {
  border-radius: 8px 8px 0 0;
}

.language-dropdown button:last-child {
  border-radius: 0 0 8px 8px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e5e5;
}

.mobile-nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #ff6b35;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(26, 26, 26, 0.3) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.hero-text {
  color: white;
}

.hero-badge {
  display: inline-block;
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: #ff6b35;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #e0e0e0;
  font-size: 0.875rem;
}

.hero-features {
  display: none;
}

.features-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.features-card h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.features-list svg {
  color: #ff6b35;
  flex-shrink: 0;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: #333;
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.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);
}

.service-content {
  padding: 2rem;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-icon {
  background: #ff6b35;
  padding: 0.75rem;
  border-radius: 8px;
  color: white;
  margin-right: 1rem;
}

.service-header h3 {
  margin: 0;
  color: white;
}

.service-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #d0d0d0;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit {
  text-align: center;
  padding: 1.5rem;
  background: #2a2a2a;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit:hover {
  background: #333;
}

.benefit-icon {
  background: #ff6b35;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.benefit h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.benefit p {
  color: #e0e0e0;
}

/* About Section */
.about {
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.about-text > p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: #777;
}

.about-details {
  margin-bottom: 3rem;
}

.detail {
  margin-bottom: 2rem;
}

.detail h4 {
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.detail p {
  color: #777;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about-stats .stat {
  text-align: center;
}

.about-stats .stat-icon {
  background: #ff6b35;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: white;
}

.about-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.about-stats .stat-label {
  color: #777;
  font-size: 0.875rem;
}

.about-images {
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-column.offset {
  margin-top: 2rem;
}

.about-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-image.small {
  height: 120px;
  object-fit: cover;
}

.about-image:not(.small) {
  height: 200px;
  object-fit: cover;
}

.location-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #ff6b35;
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.location-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.location-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Coverage Section */
.coverage {
  background: #1a1a1a;
  color: white;
}

.coverage .section-header h2 {
  color: white;
}

.coverage .section-header p {
  color: #d1d5db;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.coverage-card {
  background: #2a2a2a;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.coverage-card:hover {
  background: #333;
}

.coverage-card.warehouse {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card-icon {
  background: #ff6b35;
  padding: 0.75rem;
  border-radius: 8px;
  color: white;
  margin-right: 1rem;
}

.coverage-card.warehouse .card-icon {
  background: rgba(255, 255, 255, 0.2);
}

.card-header h3 {
  margin: 0;
  color: white;
}

.countries-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.country-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: #333;
  border-radius: 8px;
}

.coverage-card.warehouse .country-item {
  background: rgba(255, 255, 255, 0.1);
}

.country-item .flag {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.country-item .name {
  flex: 1;
  font-weight: 500;
}

.country-item .code {
  color: #ff6b35;
  font-family: monospace;
  font-size: 0.875rem;
}

.warehouse-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
}

.info-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-value {
  color: rgba(255, 255, 255, 0.9);
}

.info-item .features-list {
  list-style: none;
  margin-top: 0.5rem;
}

.info-item .features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.info-item .features-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.coverage-map {
  background: #2a2a2a;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.map-header {
  margin-bottom: 2rem;
}

.map-header svg {
  color: #ff6b35;
  margin-bottom: 1rem;
}

.map-header h3 {
  margin-bottom: 1rem;
}

.map-header p {
  color: #d1d5db;
}

.map-countries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.map-country {
  background: #333;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-country:hover {
  background: #ff6b35;
}

.map-country .flag {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.map-country .name {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Contact Section */
.contact {
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-info {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 16px;
}

.contact-info h3 {
  color: white;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  background: #ff6b35;
  padding: 0.75rem;
  border-radius: 8px;
  color: white;
  flex-shrink: 0;
}

.contact-details h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #e0e0e0;
  margin-bottom: 0.25rem;
}

.emergency-contact {
  background: #2a2a2a;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.emergency-contact h4 {
  color: white;
  margin-bottom: 0.75rem;
}

.emergency-contact p {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}

.emergency-number {
  color: #ff6b35;
  font-weight: 700;
  font-size: 1.125rem;
}

.contact-form-container {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 16px;
}

.contact-form h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.form-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #555;
  border-radius: 8px;
  font-size: 1rem;
  color: white;
  background: #1a1a1a;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  background: #ff6b35;
  padding: 0.5rem;
  border-radius: 8px;
  color: white;
}

.footer-logo h3 {
  margin: 0;
  color: white;
}

.footer-logo p {
  margin: 0;
  color: #999;
  font-size: 0.875rem;
}

.footer-section.company p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  background: #2a2a2a;
  padding: 0.5rem;
  border-radius: 8px;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff6b35;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff6b35;
}

.footer-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-section .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
}

.footer-section .contact-item svg {
  color: #ff6b35;
  flex-shrink: 0;
}

.emergency-footer {
  background: #ff6b35;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.emergency-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.emergency-number {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.emergency-available {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: #999;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
