/* ===================================
   LUGOMAX LOGISTICS - MASTER STYLESHEET
   Single CSS file for entire website
   =================================== */

/* CSS VARIABLES */
:root {
  --primary-navy: #0a2463;
  --secondary-navy: #0F2557;
  --accent-orange: #FF6B2C;
  --light-orange: #FFA726;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --text-light: #999999;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gray: #e9ecef;
  --border-gray: #dee2e6;
  --success-green: #28a745;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

input, textarea, select {
  font-family: inherit;
  border: 1px solid var(--border-gray);
  padding: 12px 16px;
  border-radius: 6px;
  width: 100%;
  transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent-orange);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

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; }

/* UTILITIES */
.container {
  width: 100%;
  /* Increased max-width to keep text closer to the edges */
  max-width: 1400px; 
  margin: 0 auto;
  /* Small, consistent spacing on the left and right */
  padding: 0 5%; 
}

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

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

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

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

.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; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: #e55a1f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background: transparent;
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

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

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: white;
}

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

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* HEADER / NAVIGATION */
.header {
  /* Using rgba for transparency (0.8 = 80% opacity) */
  background: rgba(255, 255, 255, 0.8); 
  
  /* This creates the 'frosted glass' effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
  
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  
  /* Smooth transition for when you scroll */
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-navy);
}

.logo-img {
  width: 40px;
  height: 40px;
}

.logo-text h1 {
  font-size: 1.25rem;
  margin: 0;
}

.logo-text p {
  font-size: 0.7rem;
  color: var(--text-gray);
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--accent-orange);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO SECTIONS */
/* --- Desktop & Base Styles (Your existing code with minor tweaks) --- */
.hero {
  position: relative;
  /* Use the relative path here */
   background-image: linear-gradient(to right, rgba(10, 30, 80, 0.95) 30%, rgba(10, 30, 80, 0.7)), 
                    url('../images/banner.jpeg');
  background-size: cover;
  background-position: center;
  padding: 120px 0 180px;
  color: white;
  display: flex;
  align-items: center;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  max-width: 800px;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: white;
}

.hero-text p {
  font-size: 1.25rem;
  max-width: 650px;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
  color: white;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* Button styles to match the image exactly */
.btn-primary {
  background-color: #f18300; 
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.btn-secondary {
  background-color: white;
  color: #0c296e;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  min-width: 180px;
  text-align: center;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 120px;
    text-align: center;
    /* Center the gradient on mobile */
    background-image: linear-gradient(rgba(10, 30, 80, 0.9), rgba(10, 30, 80, 0.9)), 
                      url('../images/banner.jpeg');
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* HERO SIMPLE SECTION */
.hero-simple {
  background-color: #0c296e; /* Deep Navy to match image */
  color: #ffffff;
  padding: 100px 0; /* Vertical breathing room */
  display: flex;
  align-items: center;
  min-height: 400px;
}

/* Small, intentional left spacing */
.hero-simple .container {
  width: 100%;
  max-width: 1400px; 
  margin: 0 auto;
  padding: 0 40px; /* This gives that 'small' space on the left */
}

.hero-simple h1 {
  font-size: 3rem;
  font-weight: 800; /* Extra bold per the screenshot */
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 900px; /* Keeps text from stretching across the whole screen */
  color: white;
}

.hero-simple p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 900px; /* Wraps the text like the image */
  color: white;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-simple {
    padding: 60px 0;
    text-align: center;
  }

  .hero-simple .container {
    padding: 0 20px;
  }

  .hero-simple h1 {
    font-size: 2.2rem;
    margin: 0 auto 20px;
    color:white !important;
  }

  .hero-simple p {
    font-size: 1.1rem;
    margin: 0 auto;
  }
}
/* STATS SECTION */
.stats {
  background: var(--bg-light);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.stat-item p {
  color: var(--text-gray);
  font-size: 1rem;
}

/* CARDS */
.card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--bg-gray);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--primary-navy);
}

.card-icon.orange {
  background: rgba(255,107,44,0.1);
  color: var(--accent-orange);
}

.card h3, .card h4 {
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.card p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.card ul {
  list-style: none;
  margin: 20px 0;
}

.card ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-gray);
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: bold;
}

/* GRID LAYOUTS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

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

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

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* FEATURE BOXES */
.feature-box {
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,107,44,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--accent-orange);
}

.feature-box h4 {
  margin-bottom: 12px;
}

.feature-box p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* ABOUT SECTION */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  margin-top: 30px;
}

.about-features li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-dark);
}

.about-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--accent-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

/* TESTIMONIALS */
.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-orange);
}

.testimonial-stars {
  color: var(--light-orange);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.author-info h5 {
  margin-bottom: 4px;
  color: var(--primary-navy);
}

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

/* CTA SECTIONS */
.cta-section {
  background: var(--primary-navy);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Slim CTA Strip */
.cta-strip {
  background: var(--bg-light);
  padding: 40px 0;
  text-align: center;
}

.cta-strip h3 {
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  background: var(--primary-navy);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h3 {
  color: white;
  margin-bottom: 16px;
}

.footer-about p {
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

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

.social-links a:hover {
  background: var(--accent-orange);
  transform: translateY(-2px);
}

.footer-links h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* FORMS */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

/* PROCESS/TIMELINE */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--bg-gray);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  border: 4px solid white;
  box-shadow: var(--shadow-sm);
}

.process-step h4 {
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* BLOG/ARTICLES */
.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-content {
  padding: 24px;
}

.article-category {
  display: inline-block;
  background: rgba(255,107,44,0.1);
  color: var(--accent-orange);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.article-content h3 {
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.article-content p {
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* PRODUCT/SHOP CARDS */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px auto 20px;
  font-size: 2.5rem;
  color: var(--primary-navy);
}

.product-card h4 {
  padding: 0 20px;
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.75rem;
  color: var(--accent-orange);
  font-weight: 700;
  margin-bottom: 20px;
}

.product-card .btn {
  margin: 0 20px 24px;
  width: calc(100% - 40px);
}

/* JOB LISTINGS */
.job-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-orange);
  margin-bottom: 24px;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 16px;
}

.job-title h3 {
  margin-bottom: 8px;
}

.job-tags {
  display: flex;
  gap: 8px;
}

.job-tag {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.job-tag.full-time {
  background: rgba(40,167,69,0.1);
  color: var(--success-green);
}

.job-tag.hybrid {
  background: rgba(255,107,44,0.1);
  color: var(--accent-orange);
}

.job-description {
  color: var(--text-gray);
  margin-bottom: 16px;
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-navy);
  transition: var(--transition);
}

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

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-gray);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* CONTACT INFO BOXES */
.contact-box {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-box-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.contact-box h3 {
  margin-bottom: 16px;
}

.contact-box p {
  color: var(--text-gray);
  margin-bottom: 8px;
}

.contact-box strong {
  color: var(--primary-navy);
  display: block;
  margin-top: 8px;
}

/* TRACKING */
.tracking-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}

.tracking-input-group {
  margin-bottom: 20px;
}

.tracking-input-group input {
  margin-bottom: 16px;
}

.help-link {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.help-link a {
  color: var(--accent-orange);
}

/* QUOTE FORM STEPS */
.steps-indicator {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-gray);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-circle.active {
  background: var(--accent-orange);
  color: white;
}

.step-label {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.step-label.active {
  color: var(--primary-navy);
  font-weight: 600;
}

/* RESOURCES */
.resource-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.resource-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,107,44,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--accent-orange);
}

.resource-card h4 {
  margin-bottom: 12px;
}

.resource-card p {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

/* VIDEO THUMBNAILS */
.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.video-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-orange);
  cursor: pointer;
  transition: var(--transition);
}

.play-button:hover {
  transform: scale(1.1);
}

.video-title {
  padding: 20px;
  background: white;
  text-align: center;
  font-weight: 600;
}

/* RESPONSE TIMES */
.response-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-top: 60px;
}

.response-time h3 {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.response-time p {
  color: var(--text-gray);
}

/* OFFICE HOURS */
.office-hours {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
}

.office-hours h4 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-navy);
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-gray);
}

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

/* FILTERS/TAGS */
.filter-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 10px 24px;
  border-radius: 25px;
  border: 2px solid var(--border-gray);
  background: white;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--primary-navy);
  color: white;
  border-color: var(--primary-navy);
}

/* SEARCH BAR */
.search-bar {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.search-bar input {
  padding-right: 50px;
}

.search-bar button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-orange);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
}

/* SPECIALISED SERVICES */
.service-detail {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.service-detail:nth-child(even) {
  background: var(--bg-light);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
}

.service-detail h3 {
  margin-bottom: 8px;
}

.service-description {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-dark);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: bold;
  font-size: 1.2rem;
}

/* INDUSTRIES */
.industry-icon-box {
  text-align: center;
  padding: 32px 20px;
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.industry-icon-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,107,44,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: var(--accent-orange);
}

.industry-icon-box h4 {
  font-size: 1.1rem;
}

/* FILE UPLOAD */
.file-upload {
  border: 2px dashed var(--border-gray);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.file-upload:hover {
  border-color: var(--accent-orange);
  background: var(--bg-light);
}

.file-upload-icon {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.file-upload p {
  color: var(--text-gray);
}

.file-upload input[type="file"] {
  display: none;
}

/* BLOG FEATURED */
.featured-article {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
}

.featured-article-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.featured-article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article-text {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-date {
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-gray);
  margin-bottom: 16px;
}

.featured-article-text .article-category {
  margin-bottom: 16px;
}

.featured-article-text h2 {
  margin-bottom: 16px;
}

.featured-article-text p {
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: white;
    flex-direction: column;
    padding: 40px 20px;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-md);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-actions {
    display: none;
  }
  
  .hero-content,
  .about-content,
  .grid-2,
  .featured-article-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps::before {
    display: none;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

@media (max-width: 640px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .response-times {
    grid-template-columns: 1fr;
  }
  
  .steps-indicator {
    gap: 20px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* LOADING SPINNER */
.spinner {
  border: 3px solid var(--bg-gray);
  border-top: 3px solid var(--accent-orange);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ===================================
   ADDITIONAL STYLES FOR LUGOMAX
   Add these styles to fix the homepage
   =================================== */

/* SERVICE CARDS - Homepage */
.services {
  padding: 80px 0;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  text-align: left;
}

.service-card:hover {
  border-color: #FF6B2C;
  box-shadow: 0 8px 24px rgba(255, 107, 44, 0.15);
  transform: translateY(-5px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 44, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #FF6B2C;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 16px;
  font-family: 'Sora', sans-serif;
}

.service-description {
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF6B2C;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 12px;
  color: #e55a1f;
}

.service-link svg {
  width: 16px;
  height: 16px;
}

.services-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-primary-dark {
  background: #0A1F44;
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary-dark:hover {
  background: #0F2557;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 31, 68, 0.3);
}

/* WHY CHOOSE SECTION - Features Grid */
.why-choose {
  padding: 80px 0;
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.feature-icon.orange {
  background: rgba(255, 107, 44, 0.15);
  color: #FF6B2C;
}

.feature-icon.peach {
  background: rgba(255, 167, 38, 0.15);
  color: #FFA726;
}

.feature-icon.light-peach {
  background: rgba(255, 193, 7, 0.15);
  color: #FFC107;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 16px;
  font-family: 'Sora', sans-serif;
}

.feature-description {
  color: #666666;
  line-height: 1.7;
  font-size: 1rem;
}

/* SECTION TITLES */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0A1F44;
  margin-bottom: 16px;
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

.section-description {
  font-size: 1.15rem;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ABOUT SECTION - Homepage */
.about {
  padding: 80px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0A1F44;
  margin-bottom: 20px;
  line-height: 1.5;
}

.about-text {
  color: #666666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.about-features {
  margin: 30px 0;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.about-feature svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.about-feature h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 6px;
}

.about-feature p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 0;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #FF6B2C;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 6px;
}

.testimonial-author p {
  color: #999999;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(135deg, #0A1F44 0%, #0F2557 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: 'Sora', sans-serif;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

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

.btn-outline-light:hover {
  background: white;
  color: #0A1F44;
}

/* HERO SECTION FIXES */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white !important;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
  font-family: 'Sora', sans-serif;
}

.hero-description {
  font-size: 1.25rem;
  color: white !important;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.btn-outline:hover {
  background: white;
  color: #0A1F44;
}

/* STATS NUMBER STYLING */
.stat-number {
  font-size: 3.5rem !important;
  font-weight: 800;
  color: #FF6B2C !important;
  margin-bottom: 8px;
  font-family: 'Sora', sans-serif;
}

.stat-label {
  color: #666666;
  font-size: 1.05rem;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}