/* AMG Transport Solutions - Light Theme Stylesheet */
/* Freight Forwarding & Shipping Company */

:root {
  --primary: #c41e3a;
  --primary-dark: #8b1529;
  --primary-light: #e8334a;
  --accent: #1e3a8a;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border: #e5e7eb;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  overflow-x: hidden !important;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 0;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

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

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

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

/* ==================== MOBILE MENU ==================== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: right 0.4s ease;
  padding: 100px 40px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-link {
  display: block;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  padding-left: 10px;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding-top: 80px;
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    45deg,
    var(--primary) 0px,
    var(--primary) 2px,
    transparent 2px,
    transparent 10px
  );
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 400;
}

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

.hero-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
}

/* ==================== BUTTONS ==================== */
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--primary);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  display: inline-block;
  padding: 18px 50px;
  background: white;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  padding: 100px 0;
  background: white;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 60px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid var(--border);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2.5rem;
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-desc {
  color: var(--text-light);
  line-height: 1.8;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  padding: 80px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(196, 30, 58, 0.1),
    rgba(232, 51, 74, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-light);
  line-height: 1.7;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #1e40af 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #1f2937;
  color: white;
  padding: 60px 0 30px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  color: #9ca3af;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  text-decoration: none;
}

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #9ca3af;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .desktop-menu {
    display: none !important;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .hero-pattern {
    width: 100%;
    opacity: 0.03;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 30px;
    font-size: 0.9rem;
  }
}
/* ==================== ABOUT SECTION ==================== */
.about-section {
  padding: 100px 0;
  background: white;
}

.about-feature {
  padding: 20px;
  border-radius: 12px;
  background: var(--bg-light);
  text-align: center;
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
  padding: 100px 0;
  background: white;
}

.process-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  border: 2px solid var(--border);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
}

.process-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-number {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: var(--bg-light);
  font-family: "Montserrat", sans-serif;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.process-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-desc {
  color: var(--text-light);
  line-height: 1.7;
}

/* ==================== INDUSTRIES SECTION ==================== */
.industries-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.industry-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industry-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.industry-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
  padding: 100px 0;
  background: white;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: 1.2rem;
  margin-right: 5px;
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ==================== UPDATED CTA SECTION ==================== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.btn-outline-white {
  display: inline-block;
  padding: 18px 50px;
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

/* ==================== UPDATED FOOTER ==================== */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 80px 0 30px;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  color: var(--primary-light);
  margin-top: 3px;
  font-size: 1.1rem;
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--primary-light);
}

/* ==================== RESPONSIVE UPDATES ==================== */
@media (max-width: 768px) {
  .process-number {
    font-size: 3rem;
    top: -15px;
    right: 15px;
  }

  .industry-card i {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 30px 20px;
  }
}

/* ==================== LOGO STYLES ==================== */
.nav-logo-container {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.navbar.scrolled .nav-logo-img {
  height: 45px;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.hero-logo-watermark {
  position: absolute;
  top: -80px;
  right: -100px;
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}

.hero-logo-watermark img {
  width: 600px;
  height: auto;
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 40px;
  }

  .footer-logo-img {
    height: 50px;
  }

  .hero-logo-watermark {
    display: none;
  }
}

/* ==================== CONTACT PAGE STYLES ==================== */

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
  position: relative;
}

.page-header-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-header-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-section {
  padding: 80px 0;
  background: white;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.contact-info-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-info-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.contact-info-text {
  color: var(--text-light);
  margin-bottom: 20px;
}

.contact-info-link {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.contact-info-hours {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 15px;
  font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-input::placeholder {
  color: #999;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

select.form-input {
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 15px;
}

.form-input.error {
  border-color: #ef4444;
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Quick Contact Box */
.quick-contact-box {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.quick-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.quick-contact-item:last-child {
  border-bottom: none;
}

.quick-contact-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 5px;
}

.quick-contact-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.quick-contact-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Map Container */
.map-container {
  margin-top: 30px;
}

.map-placeholder {
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px dashed var(--border);
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.map-placeholder p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.map-link {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Regional Offices */


.office-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.office-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.office-flag {
  font-size: 3rem;
  margin-bottom: 20px;
}

.office-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.office-address {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.office-phone {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Contact FAQ */
.contact-faq-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question.active {
  background: var(--primary);
  color: white;
}

.faq-question i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-answer.active {
  padding: 25px 30px;
  max-height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header-title {
    font-size: 2.5rem;
  }

  .page-header-subtitle {
    font-size: 1.1rem;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .quick-contact-box {
    padding: 30px 20px;
  }

  .quick-contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .office-card {
    padding: 30px 20px;
  }
}

/* ==================== SOLUTIONS PAGE STYLES ==================== */

/* Solutions Detail Section */
.solutions-detail-section {
  padding: 80px 0;
  background: white;
}

.solution-detail-card {
  margin-bottom: 100px;
  padding: 60px 0;
}

.solution-detail-card:nth-child(even) {
  background: var(--bg-light);
  margin-left: -100vw;
  margin-right: -100vw;
  padding-left: 100vw;
  padding-right: 100vw;
}

.solution-detail-image {
  position: relative;
}

.solution-detail-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.solution-detail-icon {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
  z-index: 10;
}

.solution-detail-content {
  padding: 20px 0;
}

.solution-detail-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.solution-detail-desc {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.solution-features-list {
  list-style: none;
  margin-bottom: 40px;
}

.solution-features-list li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

.solution-features-list li:last-child {
  border-bottom: none;
}

.solution-features-list i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-right: 15px;
  min-width: 25px;
}

/* Solutions Why Section */
.solutions-why-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.solutions-benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.solutions-benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.solutions-benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(196, 30, 58, 0.1),
    rgba(232, 51, 74, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: var(--primary);
}

.solutions-benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.solutions-benefit-desc {
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .solution-detail-card:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .solution-detail-card {
    margin-bottom: 60px;
    padding: 40px 0;
  }

  .solution-detail-icon {
    top: -20px;
    right: -20px;
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .solution-detail-title {
    font-size: 1.8rem;
  }

  .solution-detail-desc {
    font-size: 1rem;
  }

  .solution-features-list li {
    font-size: 0.95rem;
  }
}

/* ==================== TOAST NOTIFICATIONS ==================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  pointer-events: none;
}

.toast {
  min-width: 320px;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: auto;
  animation: toast-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.toast.hiding {
  animation: toast-slide-out 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toast-slide-in {
  from {
    transform: translateX(100%) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes toast-slide-out {
  from {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateX(100%) scale(0.9);
    opacity: 0;
  }
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.toast-success .toast-icon {
  background: #ecfdf5;
  color: #10b981;
}

.toast-error .toast-icon {
  background: #fef2f2;
  color: #ef4444;
}

.toast-info .toast-icon {
  background: #eff6ff;
  color: #3b82f6;
}

.toast-content {
  flex-grow: 1;
}

.toast-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
  display: block;
}

.toast-message {
  color: var(--text-light);
  font-size: 0.875rem;
}

.toast-close {
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 4px;
}

.toast-close:hover {
  color: var(--text-dark);
}

@media (max-width: 640px) {
  .toast-container {
    bottom: 20px;
    right: 20px;
    left: 20px;
  }
  .toast {
    min-width: auto;
    width: 100%;
  }
}

/* ==================== PARSLEY VALIDATION ==================== */
input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  border-color: var(--primary) !important;
  background-color: #fff5f5 !important;
}

.parsley-errors-list {
  margin: 5px 0 0;
  padding: 0;
  list-style-type: none;
  font-size: 0.85rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0;
  transition: all 0.3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
