/* ============================================
   TUEN LOGISTICS - ALPEM STYLE REDESIGN
   Modern, Clean, Professional Design
   ============================================ */

/* ============================================
   1. BASE & TYPOGRAPHY
   ============================================ */
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  background-color: #ffffff;
  color: #2d3748;
  line-height: 1.6;
}

/* ============================================
   2. COLOR PALETTE - ALPEM INSPIRED
   ============================================ */
:root {
  /* Primary Colors */
  --color-primary: #2c5282;
  --color-primary-light: #3498db;
  --color-primary-dark: #1a365d;
  
  /* Accent Colors */
  --color-accent: #fa4216;
  --color-accent-hover: #e63900;
  
  /* Neutral Colors */
  --color-white: #ffffff;
  --color-light: #f8f9fa;
  --color-lighter: #f0f2f5;
  --color-gray: #718096;
  --color-dark: #2d3748;
  --color-darker: #1a202c;
  
  /* Status Colors */
  --color-success: #48bb78;
  --color-warning: #ed8936;
  --color-info: #4299e1;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   3. NAVIGATION - ALPEM STYLE
   ============================================ */
.main-navbar {
  background-color: var(--color-white) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: all var(--transition-base);
}

.main-navbar .container-fluid {
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
  transition: transform var(--transition-base);
}

.navbar-logo {
  height: 65px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all var(--transition-base);
  color: var(--color-dark) !important;
  font-size: 0.95rem;
  position: relative;
}

.nav-link:hover {
  color: var(--color-primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

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

.nav-link.active {
  color: var(--color-primary) !important;
  font-weight: 600;
}

.nav-link.active::after {
  width: 60%;
}

/* WhatsApp Nav Button */
.navbar .btn-success {
  background-color: #25d366;
  border-color: #25d366;
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  text-decoration: none;
  display: inline-block;
  border-radius: 6px;
  transition: all var(--transition-base);
  font-size: 0.9rem;
}

.navbar .btn-success:hover {
  background-color: #20ba5a;
  border-color: #20ba5a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu */
.navbar-toggler {
  border: 1px solid var(--color-gray);
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(45, 55, 72, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   4. HERO SECTION - MINIMAL & CLEAN
   ============================================ */
.hero-section {
  min-height: 70vh;
  position: relative;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  margin-top: 0;
  overflow: hidden;
}

/* Subtle pattern overlay */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(44, 82, 130, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 82, 130, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary) !important;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-darker) !important;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-gray) !important;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.btn-hero {
  background-color: var(--color-primary);
  border: none;
  color: white;
  font-weight: 600;
  padding: 14px 40px;
  font-size: 1rem;
  border-radius: 6px;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
}

.btn-hero:hover {
  background-color: var(--color-primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 82, 130, 0.4);
}

/* Hero decorative element - Alpem style */
.hero-decoration {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border: 2px solid rgba(44, 82, 130, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.hero-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px solid rgba(52, 152, 219, 0.15);
  border-radius: 50%;
}

/* ============================================
   5. CARDS - CLEAN DESIGN
   ============================================ */
.card {
  transition: all var(--transition-base);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e0;
}

.card-body {
  background-color: var(--color-white);
  color: var(--color-dark);
  padding: 2rem;
}

.card-title {
  color: var(--color-darker);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--color-gray);
  line-height: 1.7;
}

/* Service Cards */
.service-card {
  text-align: center;
  height: 100%;
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
}

.service-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: 0 8px 30px rgba(44, 82, 130, 0.15);
}

.service-card i {
  color: var(--color-primary);
  transition: transform var(--transition-base);
  margin-bottom: 1.5rem;
}

.service-card:hover i {
  transform: scale(1.1);
  color: var(--color-primary-light);
}

/* ============================================
   6. BUTTONS - MODERN & MINIMAL
   ============================================ */
.btn {
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 500;
  transition: all var(--transition-base);
  border: none;
}

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

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

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

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

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

.btn-success:hover {
  background-color: #38a169;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   7. SECTIONS - CLEAN LAYOUT
   ============================================ */
main {
  margin-top: 89px;
}

section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-darker);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray);
  margin-bottom: 3rem;
}

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

.bg-white {
  background-color: var(--color-white) !important;
}

/* ============================================
   8. STATISTICS SECTION
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 4rem 0;
}

.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  transition: transform var(--transition-base);
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--color-gray);
  font-weight: 500;
}

/* ============================================
   9. FOOTER - CLEAN & PROFESSIONAL
   ============================================ */
footer {
  background-color: var(--color-primary) !important;
  color: white;
  padding: 3rem 0 0;
  margin-top: 5rem;
}

footer h5, footer h6 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
}

footer a {
  transition: all var(--transition-base);
  text-decoration: none;
}

footer a:hover {
  color: white !important;
  padding-left: 5px;
}

footer .list-unstyled li {
  margin-bottom: 0.75rem;
}

footer hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1.5rem;
}

footer .text-center {
  padding: 1.5rem 0;
  background-color: rgba(0, 0, 0, 0.1);
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all var(--transition-base);
  margin-right: 10px;
}

.social-icons a:hover {
  background-color: var(--color-accent);
  transform: translateY(-3px);
}

/* ============================================
   10. PAGE HEADER - MINIMAL WITH IMAGE
   ============================================ */
.page-header {
  background: linear-gradient(rgba(44, 82, 130, 0.88), rgba(52, 152, 219, 0.85)), 
              url('https://images.unsplash.com/photo-1580674684081-7617fbf3d745?q=80&w=2070') center/cover no-repeat;
  padding: 100px 0 60px;
  margin-top: 89px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: white !important;
  margin-bottom: 1rem;
}

.page-header .lead, .page-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95) !important;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   11. CONTENT SECTIONS
   ============================================ */
.content-section {
  padding: 5rem 0;
}

.content-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-darker);
  margin-bottom: 1rem;
}

.content-section .section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 0 auto 2.5rem;
}

/* ============================================
   12. ANIMATIONS - SUBTLE & SMOOTH
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   13. WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-base);
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ============================================
   14. FORMS - CLEAN & MODERN
   ============================================ */
.form-control {
  border-radius: 6px;
  border: 1px solid #cbd5e0;
  padding: 12px 16px;
  transition: all var(--transition-base);
  background-color: var(--color-white);
  color: var(--color-dark);
}

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

.form-label {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

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

.text-accent {
  color: var(--color-accent) !important;
}

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

.bg-accent {
  background-color: var(--color-accent) !important;
}

/* Icons */
.fa-3x {
  font-size: 3rem;
}

.fa-4x {
  font-size: 4rem;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   16. CEO SECTION (NEW)
   ============================================ */
.ceo-section {
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  padding: 5rem 0;
}

.ceo-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

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

.ceo-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.ceo-content {
  padding: 2.5rem;
}

.ceo-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-darker);
  margin-bottom: 0.5rem;
}

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

.ceo-bio {
  color: var(--color-gray);
  line-height: 1.8;
}

.ceo-highlight {
  background-color: rgba(44, 82, 130, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  margin-top: 1.5rem;
}

/* ============================================
   17. PROJECT/REFERENCE CARDS (NEW)
   ============================================ */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.project-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 1.5rem;
  color: white;
}

.project-category {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.project-date {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   18. TIMELINE - MINIMAL DESIGN
   ============================================ */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 3px var(--color-accent);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 21px;
  width: 2px;
  height: calc(100% + 10px);
  background-color: #e2e8f0;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-content h5 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--color-gray);
  line-height: 1.7;
}

/* ============================================
   19. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
    padding: 80px 0 60px;
    background-attachment: scroll !important;
  }

  .hero-title {
    font-size: 2.25rem !important;
  }

  .hero-tagline {
    font-size: 1.1rem !important;
  }

  .page-header {
    padding: 80px 0 50px;
  }

  .page-header h1 {
    font-size: 2.25rem;
  }

  section {
    padding: 3rem 0;
  }

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

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

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }

  #scrollToTop {
    width: 45px;
    height: 45px;
    bottom: 85px;
    right: 20px;
    font-size: 1.2rem;
  }

  .hero-decoration {
    display: none;
  }

  .scroll-indicator {
    font-size: 1.5rem;
    bottom: 20px;
  }

  .trust-indicator {
    flex-direction: column;
    font-size: 0.85rem !important;
  }
}

/* ============================================
   20. SMOOTH TRANSITIONS & ANIMATIONS
   ============================================ */
* {
  box-sizing: border-box;
}

a {
  transition: all var(--transition-base);
}

/* Hover effects for interactive elements */
button:not(:disabled), 
a:not(.disabled) {
  cursor: pointer;
}

/* Focus states */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

/* Parallax Hero Effect */
.parallax-hero {
  background-attachment: fixed !important;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 10;
  transition: all var(--transition-base);
}

.scroll-indicator:hover {
  color: var(--color-accent);
  transform: translateX(-50%) scale(1.2);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Scroll to Top Button */
#scrollToTop {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

#scrollToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollToTop:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* Ripple Effect */
.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Trust Indicator */
.trust-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-indicator i {
  opacity: 0.9;
}

/* ============================================
   21. SPECIAL SECTIONS
   ============================================ */

/* Service Detail Page */
.service-detail-header {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 80px 0 50px;
  color: white;
  text-align: center;
}

.service-detail-content {
  padding: 3rem 0;
}

.service-sidebar {
  background: var(--color-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* Contact Section */
.contact-info-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
  margin-bottom: 1.5rem;
}

.contact-info-box h5 {
  color: var(--color-darker);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info-box i {
  color: var(--color-primary);
  margin-right: 10px;
}

/* Feature Boxes */
.feature-box {
  text-align: center;
  padding: 2rem;
  transition: all var(--transition-base);
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  color: var(--color-primary);
  margin-bottom: 1rem;
  transition: all var(--transition-base);
}

.feature-box:hover i {
  color: var(--color-primary-light);
  transform: scale(1.1);
}

.feature-box h5 {
  color: var(--color-darker);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-box p {
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   22. BREADCRUMB (OPTIONAL)
   ============================================ */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin: 0;
}

.breadcrumb-item {
  color: var(--color-gray);
}

.breadcrumb-item.active {
  color: var(--color-darker);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--color-gray);
}

/* ============================================
   23. MISC UTILITIES
   ============================================ */
.text-muted {
  color: var(--color-gray) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow {
  box-shadow: var(--shadow-md) !important;
}

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

.rounded {
  border-radius: 8px !important;
}

.rounded-lg {
  border-radius: 12px !important;
}

/* Remove unnecessary decorations */
.page-header-decoration,
.page-header-decoration-right {
  display: none;
}

/* Clean, professional look */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Top info bar - removed or minimal */
.top-info-bar {
  display: none;
}
