/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #ffffff;
}

/* Mining Theme Variables */
:root {
    --mining-gold: #ffd700;
    --mining-copper: #b87333;
    --mining-dark: #2c2416;
    --mining-accent: #ff8c00;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0077b6, #023e8a);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Minimal Navigation Styles */
.navbar-minimal {
    background: rgba(101, 67, 33, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar-minimal.scrolled {
    background: rgba(101, 67, 33, 0.98);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.nav-container-minimal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo-minimal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.company-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.company-main {
    font-size: 1rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.5px;
}

.company-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: #f4e4bc;
    letter-spacing: 0.3px;
}

.nav-menu-minimal {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link-minimal {
    text-decoration: none;
    color: #f4e4bc;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-minimal:hover {
    color: #d4af37;
}

.nav-link-minimal::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

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

.hamburger-minimal {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger-minimal span {
    width: 25px;
    height: 3px;
    background: #f4e4bc;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container-minimal {
        padding: 0 1rem;
    }
    
    .company-name {
        display: none;
    }
    
    .nav-menu-minimal {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(101, 67, 33, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu-minimal.active {
        left: 0;
    }
    
    .hamburger-minimal {
        display: flex;
    }
    
    .hamburger-minimal.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger-minimal.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-minimal.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .logo-image {
        height: 40px;
    }
}

/* Legacy nav-container - keeping for compatibility */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(44, 36, 22, 0.98) 0%, rgba(60, 51, 39, 0.98) 50%, rgba(76, 66, 56, 0.98) 100%);
    background-image: 
        linear-gradient(135deg, rgba(44, 36, 22, 0.98) 0%, rgba(60, 51, 39, 0.98) 50%, rgba(76, 66, 56, 0.98) 100%),
        url('https://images.unsplash.com/photo-1610375461246-598f04441de8?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: 0 4px 35px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

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

/* Professional shipping company logo styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--mining-gold);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    margin-top: -2px;
}

.footer-logo-style .logo-main {
    color: white;
}

.footer-logo-style .logo-sub {
    color: var(--mining-gold);
}

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

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

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: #ffd60a;
    text-shadow: 0 0 10px rgba(255, 214, 10, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #ffd60a, #ffb700);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 214, 10, 0.4);
}

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

.btn-quote {
    background: linear-gradient(135deg, #ffd60a, #ffb700);
    color: #1a1a1a !important;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(255, 214, 10, 0.3);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 10, 0.5);
    background: linear-gradient(135deg, #ffb700, #ffd60a);
}

.btn-quote::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.55)), 
                url('images/goldsad.jpg') center/cover no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero::before,
.hero::after {
  content: none !important;
  background: none !important;
}

.hero-overlay {
  display: none !important;
}

@media (max-width: 768px) {
  .hero { 
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), 
                url('images/goldsad.jpg') center/cover no-repeat !important;
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center !important;
    min-height: 100vh !important;
  }
}

/* === Hero Scene Themes ===
   Add one of these classes to <body>: theme-port | theme-highway | theme-air | theme-corporate
   Default fallback is theme-port. */
:root {
  --hero-bg-image: url('https://images.unsplash.com/photo-1590497008432-598f04441de8?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80');
}
.theme-port {
  --hero-bg-image: url('https://images.unsplash.com/photo-1590497008432-598f04441de8?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80');
}
.theme-highway {
  --hero-bg-image: url('images/trucks-lineup.jpg');
}
.theme-air {
  --hero-bg-image: url('https://images.unsplash.com/photo-1518397387272-2d61b0b87e8e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80');
}
.theme-corporate {
  --hero-bg-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=90');
}

/* Live Tracking Dashboard */
.tracking-dashboard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    width: 100%;
    max-width: 500px;
}

.dashboard-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-header h3 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-header i {
    color: #ffd60a;
}

.tracking-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tracking-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tracking-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #6c757d;
    transition: all 0.3s ease;
}

.tracking-item.active::before {
    background: linear-gradient(135deg, #ffd60a, #ffb700);
    box-shadow: 0 0 10px rgba(255, 214, 10, 0.5);
}

.tracking-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.tracking-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 214, 10, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tracking-icon i {
    color: #ffd60a;
    font-size: 1.2rem;
}

.tracking-info {
    flex: 1;
}

.tracking-id {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.tracking-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.tracking-progress {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0077b6, #ffd60a);
    border-radius: 3px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill.delivered {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.tracking-progress span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
    min-width: 80px;
    text-align: right;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    text-align: left;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 
                 1px 1px 6px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(0, 0, 0, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes subtitleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 500px;
    color: #f8f9fa;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 
                 1px 1px 4px rgba(0, 0, 0, 0.8),
                 0 0 12px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out 1s both;
    line-height: 1.6;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd60a, #ffed4e);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(255, 214, 10, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 214, 10, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 214, 10, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 214, 10, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd60a;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Features Badges */
.hero-features {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 214, 10, 0.1);
    border: 1px solid rgba(255, 214, 10, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 214, 10, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 214, 10, 0.2);
}

.feature-badge i {
    color: #ffd60a;
    font-size: 1rem;
}

.feature-badge span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Section - Simplified */
.about-section {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), 
                url('images/gold1.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

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

.about-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.about-section .section-tag {
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.95), 2px 2px 8px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
}

.about-section .section-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.98);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.about-content {
    margin-bottom: 60px;
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.about-text {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-text h3 {
    font-size: 2.4rem;
    color: #ffc107;
    margin-bottom: 35px;
    font-weight: 600;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.95), 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.about-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* Company Details - Enhanced Professional Cards */
.company-details {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    margin: 50px 0;
    border: 1px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.company-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(0, 123, 191, 0.05));
    z-index: -1;
}

.company-details h4 {
    color: #ffc107;
    font-size: 1.8rem;
    margin-bottom: 35px;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.detail-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #ffc107;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

.detail-item strong {
    color: #ffc107;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Leadership Section - Enhanced Professional */
.ownership-structure {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    margin: 50px 0;
    border: 1px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.ownership-structure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 191, 0.05), rgba(255, 193, 7, 0.05));
    z-index: -1;
}

.ownership-structure h4 {
    color: #ffc107;
    font-size: 1.8rem;
    margin-bottom: 35px;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.leadership-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 0;
    max-width: 350px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(0, 123, 191, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.leader-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.25);
    border-color: rgba(255, 193, 7, 0.6);
}

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

.leader-info h5 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.leader-info .title {
    color: #ffc107;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.leader-info .contact {
    color: #e2e8f0;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    font-weight: 400;
    line-height: 1.3;
    background: none;
    background-color: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.leader-info .nationality {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 193, 7, 0.3);
}

/* Statistics Section - Enhanced */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.about-stats .stat-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stats .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
}

.about-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 10px;
}

.about-stats .stat-label {
    color: #4a5568;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Mission & Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
}

.card-icon {
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    color: #1a1a1a;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.mission-card h3, .vision-card h3 {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-card p, .vision-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Key Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: #ffc107;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section .section-title {
        font-size: 2.2rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .company-details, .ownership-structure {
        padding: 25px;
    }
    
    .details-grid, .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-section .section-title {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card,
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #334155;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Advanced Animations and Micro-interactions */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

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

@keyframes fadeInScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Floating elements */
.hero-stats .stat-item:nth-child(1) {
    animation: float 3s ease-in-out infinite;
    animation-delay: 0s;
}

.hero-stats .stat-item:nth-child(2) {
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-stats .stat-item:nth-child(3) {
    animation: float 3s ease-in-out infinite;
    animation-delay: 2s;
}

/* Enhanced hover effects */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 119, 182, 0.2);
}

.feature-card {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Button ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn > * {
    position: relative;
    z-index: 1;
}

/* Loading screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0077b6, #023e8a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ffd60a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Enhanced scroll indicators */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #0077b6, #ffd60a, #0077b6);
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(0, 119, 182, 0.3);
}

/* Improved mobile hamburger animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Enhanced form focus effects */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.15);
}

/* Enhanced trust badges */
.badge {
    position: relative;
    overflow: hidden;
    background: url('./images/truck-background.jpg'), linear-gradient(135deg, #f8f9fa, #e9ecef) padding-box,
                linear-gradient(135deg, #0077b6, #ffd60a) border-box;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.1), transparent);
    transition: left 0.8s ease;
}

.badge:hover::before {
    left: 100%;
}

/* Staggered animations for service cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Maritime-inspired container effects */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    transition: opacity 0.3s ease;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 20px !important;
}

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Shipping container-inspired grid pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 214, 10, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 214, 10, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

/* Professional shipping company accent colors */
:root {
    --shipping-blue: #0077b6;
    --maritime-gold: #ffd60a;
    --ocean-deep: #023e8a;
    --container-gray: #6c757d;
    --port-white: #ffffff;
    --cargo-dark: #1a1a1a;
}

/* Enhanced button effects with shipping theme */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '⚓';
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: rgba(26, 26, 26, 0.3);
    transition: left 0.3s ease;
}

.btn-primary:hover::before {
    left: calc(100% + 10px);
}

/* Maritime-inspired section dividers */
.section-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--shipping-blue), var(--maritime-gold), var(--shipping-blue), transparent);
    margin: 2rem auto;
    border-radius: 2px;
}

/* Container-style feature cards */
.feature-card {
    position: relative;
    border-left: 4px solid transparent;
    border-image: linear-gradient(135deg, var(--shipping-blue), var(--maritime-gold)) 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, var(--maritime-gold), var(--shipping-blue));
    transition: height 0.3s ease;
}

.feature-card:hover::before {
    height: 100%;
}

/* Shipping route-inspired process timeline */
.process-step::before {
    content: '';
    position: absolute;
    left: 90px;
    top: 50%;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--shipping-blue), transparent);
    transform: translateY(-50%);
}

.process-step:last-child::before {
    display: none;
}

/* Port crane-inspired loading animation */
@keyframes craneMove {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(10px) rotate(2deg); }
    75% { transform: translateX(-10px) rotate(-2deg); }
}

.loading-logo {
    animation: craneMove 3s ease-in-out infinite;
}

/* Wave effect for maritime sections */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e2e8f0" fill-opacity="0.3"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    opacity: 0.1;
}

.about-section::before {
    display: none;
}
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* === FINAL OVERRIDE: Process Section Background (restore, visible) === */
.process-section {
  background: linear-gradient(180deg, rgba(5, 12, 28, 0.06), rgba(5, 12, 28, 0.18)),
              url('https://images.unsplash.com/photo-1590647067331-bc8b5ff2da65?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80') center 45%/cover no-repeat !important;
  background-attachment: scroll;
  position: relative;
}

@media (max-width: 768px) {
  .process-section { background-position: center 55% !important; }
}

/* === FINAL OVERRIDE: Process Cards backgrounds (very visible) === */
.process-card { position: relative; overflow: hidden; }
.process-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.28 !important; /* make image visible */
  filter: blur(0px) saturate(1);
  z-index: 0;
  transition: opacity 0.3s ease;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 20px !important;
}

.process-card:hover::after {
  opacity: 0.34 !important;
}

.process-card > * { position: relative; z-index: 1; }
.process-card::before { z-index: 2; }

/* Step-specific images */
.process-card--quote::after {
  background-image: url('images/contact-bg.jpg') !important;
}
.process-card--collection::after {
  background-image: url('images/driver-bg.jpg') !important;
}
.process-card--transport::after {
  background-image: url('images/tracking-bg.jpg') !important;
}
.process-card--delivery::after {
  background-image: url('images/truck-background.jpg') !important;
}

@media (max-width: 768px) {
  .process-card--delivery::after { background-position: center 55%; }
}

/* === FINAL OVERRIDE: Professional Process Section === */
.process-section {
  background: linear-gradient(180deg, rgba(5, 12, 28, 0.06), rgba(5, 12, 28, 0.18)),
              url('https://images.unsplash.com/photo-1590647067331-bc8b5ff2da65?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80') center 45%/cover no-repeat !important;
  background-attachment: scroll;
  position: relative;
  padding: 6rem 0 !important;
}

.process-card {
  position: relative !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 20px !important;
  padding: 0 !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  margin-bottom: 2rem !important;
}

.process-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px rgba(0, 119, 182, 0.25) !important;
}

.process-card::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  opacity: 0.25 !important;
  transition: opacity 0.3s ease !important;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 20px !important;
}

.process-card:hover::after {
  opacity: 0.35 !important;
}

.process-card > * {
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 2.5rem !important;
}

/* Step-specific professional images */
.process-card--quote::after {
  background-image: url('images/contact-bg.jpg') !important;
}
.process-card--collection::after {
  background-image: url('images/driver-bg.jpg') !important;
}
.process-card--transport::after {
  background-image: url('images/tracking-bg.jpg') !important;
}
.process-card--delivery::after {
  background-image: url('images/truck-background.jpg') !important;
}

/* Professional Typography */
.process-header {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  margin-bottom: 2rem !important;
}

.step-number {
  background: linear-gradient(135deg, #0077b6, #023e8a) !important;
  color: white !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3) !important;
}

.step-icon {
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(2, 62, 138, 0.1)) !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 15px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  color: #0077b6 !important;
  flex-shrink: 0 !important;
}

.process-content h3 {
  color: #1a1a1a !important;
  font-size: 1.4rem !important;
  margin-bottom: 1rem !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.process-content p {
  color: #4a5568 !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.process-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.process-features li {
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  margin-bottom: 0.8rem !important;
  color: #4a5568 !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

.process-features i {
  color: #0077b6 !important;
  font-size: 0.8rem !important;
  width: 16px !important;
  text-shadow: 0 1px 2px rgba(0, 119, 182, 0.2) !important;
}

@media (max-width: 768px) {
  .process-section { background-position: center 55% !important; }
  .process-card { margin-bottom: 1.5rem !important; }
  .process-card > * { padding: 2rem !important; }
}

/* === Enhanced Quote Form Styling === */
.quote-form {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 20px !important;
  padding: 3rem !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.error-message {
  color: #ef4444 !important;
  font-size: 0.8rem !important;
  margin-top: 0.5rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  animation: slideIn 0.3s ease !important;
}

.form-checkbox {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
  margin: 1.5rem 0 !important;
  padding: 1rem !important;
  background: rgba(0, 119, 182, 0.05) !important;
  border-radius: 10px !important;
  border: 1px solid rgba(0, 119, 182, 0.1) !important;
}

.form-checkbox input[type="checkbox"] {
  width: auto !important;
  margin: 0 !important;
  transform: scale(1.2) !important;
}

.btn-submit.loading::after {
  content: '' !important;
  position: absolute !important;
  width: 20px !important;
  height: 20px !important;
  margin: auto !important;
  border: 2px solid transparent !important;
  border-top-color: #ffffff !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.leader-info .contact {
    color: #e2e8f0 !important;
    font-size: 0.85rem !important;
    margin-bottom: 0.3rem !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

/* Customer Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #1e293b;
    color: white;
}

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

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

.review-card {
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.review-stars {
    font-size: 18px;
    color: #ffd60a;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
    font-style: italic;
    min-height: 120px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffd60a;
}

.author-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.author-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Responsive Design for Reviews */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 30px 25px;
    }
    
    .review-text {
        font-size: 14px;
        min-height: auto;
    }
}

.reviews-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.reviews-section .section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
}

.reviews-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffc107, #ffeb3b, transparent);
    border-radius: 2px;
}

/* Responsive header styling */
@media (max-width: 992px) {
    .reviews-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .reviews-section .section-header h2 {
        font-size: 1.9rem;
    }
    
    .reviews-section .section-header {
        margin-bottom: 40px;
    }
    
    .reviews-section .section-header h2::before {
        font-size: 2.5rem;
        top: -20px;
    }
    
    .reviews-section .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .reviews-section .section-header h2 {
        font-size: 1.6rem;
        letter-spacing: -0.3px;
    }
    
    .reviews-section .section-header h2::before {
        font-size: 2rem;
        top: -15px;
    }
    
    .reviews-section .section-header::before {
        width: 40px;
        height: 3px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0077b6 0%, #023e8a 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 1;
}

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

/* Quote Header */
.quote-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

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

.quote-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.header-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ffd60a, #ffb700);
    margin: 0 auto;
    border-radius: 2px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Left Column - Contact Form */
.contact-form-container {
    background: #ffffff;
    padding: 3rem;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

/* Checkbox Group Styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
    padding: 0.75rem;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.checkbox-label:hover {
    background: #e3f2fd;
    border-color: #0077b6;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #0077b6;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #0077b6;
    border-color: #0077b6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0077b6, #023e8a);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #023e8a, #0077b6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #0077b6;
}

.form-disclaimer i {
    color: #0077b6;
}

/* Right Column - Company Information */
.contact-info-container {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.company-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.company-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.company-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    background: rgba(255, 215, 0, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: #ffd60a;
    font-size: 1.2rem;
}

.info-content h4 {
    color: #ffd60a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.info-content span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.contact-person {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ffd60a;
}

.contact-person strong {
    color: #ffd60a;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-person i {
    color: #ffd60a;
    margin-right: 0.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-header h2 {
        font-size: 2rem;
    }
    
    .quote-header p {
        font-size: 1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
    }
    
    .company-header h3 {
        font-size: 1.3rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
}

/* ===== NEW PROFESSIONAL CONTACT SECTION ===== */
.contact-section-new {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e2e8f0" fill-opacity="0.3"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    opacity: 0.5;
}

.contact-section-new .container {
    position: relative;
    z-index: 2;
}

/* Contact Hero Section */
.contact-hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(5deg) scale(1.05); }
}

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

.contact-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-card.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.contact-card.primary::before {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-card.primary .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.card-icon i {
    font-size: 1.8rem;
    color: #3b82f6;
}

.contact-card.primary .card-icon i {
    color: white;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.contact-card.primary .card-content h3 {
    color: white;
}

.card-content p {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-card.primary .card-content p {
    color: rgba(255, 255, 255, 0.9);
}

.registration {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.contact-card.primary .registration {
    color: rgba(255, 255, 255, 0.8);
}

.phone-numbers, .email-addresses {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-numbers a, .email-addresses a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.phone-numbers a:hover, .email-addresses a:hover {
    color: #1d4ed8;
    border-bottom-color: #3b82f6;
}

.card-action {
    margin-top: 20px;
}

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

.contact-card.primary .btn-link {
    color: white;
}

.btn-link:hover {
    gap: 12px;
}

/* Team Section */
.team-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.team-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.team-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.team-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-avatar i {
    font-size: 1.5rem;
    color: white;
}

.team-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.team-role {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.team-contact a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.team-contact a:hover {
    color: #1d4ed8;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 60px;
    border-radius: 20px;
    color: white;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: ctaGlow 10s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(-5deg) scale(1.1); }
}

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

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 1.3rem;
    color: #fbbf24;
}

.feature-item span {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item {
        width: 200px;
    }
    
    .team-section {
        padding: 30px;
    }
    
    .contact-cta {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-hero h2 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 30px;
    }
    
    .team-section {
        padding: 20px;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), 
                url('images/tracking-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    color: #ffffff;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    background: rgba(0, 0, 0, 0.75);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.services-section .section-tag {
    background: linear-gradient(135deg, #ffd60a, #ffed4e);
    color: #1a1a1a;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 214, 10, 0.3);
}

.services-section .section-title {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.9), 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.services-section .section-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.98);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

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

.service-card {
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 119, 182, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0077b6, #023e8a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

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

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.service-features i {
    color: #0077b6;
    font-size: 0.8rem;
}

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

.service-link:hover {
    gap: 1rem;
    color: #023e8a;
}

/* Individual service card backgrounds */
.services-grid .service-card:nth-child(1) {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.5)), 
                      url('https://images.unsplash.com/photo-1610375461246-83df859d849d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.services-grid .service-card:nth-child(2) {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.5)), 
                      url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.services-grid .service-card:nth-child(3) {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.5)), 
                      url('https://images.unsplash.com/photo-1464207687429-7505649dae38?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.services-grid .service-card:nth-child(4) {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.5)), 
                      url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.services-grid .service-card:nth-child(5) {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.5)), 
                      url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.services-grid .service-card:nth-child(6) {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.5)), 
                      url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    position: relative;
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 119, 182, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd60a, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 214, 10, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: flex-start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.footer-description {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0;
}

.footer-title {
    color: #5dade2;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-icon {
    color: #f39c12;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.contact-item span {
    color: #ecf0f1;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-top: 0;
    }
}

/* WhatsApp Floating Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: fadeInUp 0.5s ease-out;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.whatsapp-button:hover {
    background: #20b954;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    text-decoration: none;
    color: white;
}

.whatsapp-button i {
    font-size: 20px;
    margin-right: 10px;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 500;
}

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

/* Pulse animation for attention */
.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 25px;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    z-index: -1;
    opacity: 0.7;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .whatsapp-button i {
        font-size: 18px;
        margin-right: 8px;
    }
    
    .whatsapp-text {
        font-size: 13px;
    }
}

/* Very small screens - show only icon */
@media (max-width: 480px) {
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    
    .whatsapp-button i {
        margin-right: 0;
        font-size: 24px;
    }
}

/* Professional Mobile Design */
@media screen and (max-width: 768px) {
    /* Reset and base */
    * {
        box-sizing: border-box;
    }
    
    html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Container */
    .container {
        padding: 0 20px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Header */
    .navbar-minimal {
        background: rgba(44, 62, 80, 0.95);
        padding: 15px 20px;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }
    
    .nav-container-minimal {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
    }
    
    .nav-logo-minimal {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    
    .company-name {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }
    
    .company-main {
        font-size: 14px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.3px;
    }
    
    .company-sub {
        font-size: 11px;
        font-weight: 500;
        color: #3498db;
        margin-top: -1px;
    }
    
    /* Mobile menu */
    .nav-menu-minimal {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(44, 62, 80, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 30px 0;
        transition: left 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu-minimal.active {
        left: 0;
    }
    
    .nav-menu-minimal li {
        margin: 8px 0;
        width: 85%;
        text-align: center;
    }
    
    .nav-link-minimal {
        display: block;
        padding: 16px 20px;
        font-size: 17px;
        font-weight: 500;
        color: white;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link-minimal:hover,
    .nav-link-minimal:active {
        background: rgba(52, 152, 219, 0.8);
        transform: translateY(-2px);
    }
    
    /* Hamburger */
    .hamburger-minimal {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 4px;
    }
    
    .hamburger-minimal span {
        width: 26px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    /* Hero section - Clean mobile */
    .hero {
        margin-top: 70px;
        padding: 40px 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.8)), url('https://images.unsplash.com/photo-1610375461246-83df859d849d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        position: relative;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        width: 100%;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }
    
    .hero-text {
        order: 1;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #ffffff;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
        color: #ffffff;
        font-weight: 500;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 
                     1px 1px 5px rgba(0, 0, 0, 0.8),
                     0 0 15px rgba(0, 0, 0, 0.6);
        margin-bottom: 20px;
        line-height: 1.4;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    }
    
    .hero-description {
        font-size: 16px;
        color: #f8f9fa;
        line-height: 1.6;
        margin-bottom: 35px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 
                     1px 1px 4px rgba(0, 0, 0, 0.8),
                     0 0 12px rgba(0, 0, 0, 0.6);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 18px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        border: none;
        transition: all 0.3s ease;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    }
    
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
    }
    
    .btn-secondary {
        background: rgba(255, 255, 255, 0.95);
        color: #2c3e50;
        border: 2px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }
    
    .btn-secondary:hover {
        background: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }
    
    /* Hide desktop elements completely on mobile */
    .hero-visual,
    .tracking-dashboard,
    .hero-features,
    .hero-stats,
    .scroll-indicator {
        display: none !important;
    }
    
    /* Show company information on mobile */
    .company-details {
        display: block !important;
        margin: 30px 0;
    }
    
    .details-grid {
        display: block !important;
        gap: 0;
    }
    
    .ownership-structure {
        display: block !important;
        margin: 30px 0;
    }
    
    .leadership-grid {
        display: block !important;
        gap: 0;
    }
    
    /* About section */
    .about-section {
        padding: 50px 0;
        background: #f8f9fa;
    }
    
    .company-details {
        margin: 30px 0;
    }
    
    .details-grid {
        display: block;
        gap: 0;
    }
    
    .detail-item {
        margin-bottom: 15px;
        padding: 18px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.1);
        border-left: 4px solid #3498db;
        display: block !important;
    }
    
    .detail-item strong {
        color: #2c3e50;
        font-size: 14px;
        font-weight: 600;
        display: block;
        margin-bottom: 5px;
    }
    
    .detail-item {
        color: #5a6c7d;
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Leadership cards */
    .leader-card {
        margin-bottom: 20px;
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.1);
        border-left: 4px solid #e74c3c;
        display: block !important;
    }
    
    .leader-card h5 {
        color: #2c3e50;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    
    .leader-card .title {
        color: #e74c3c;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .leader-card .contact {
        color: #5a6c7d;
        font-size: 13px;
        margin-bottom: 5px;
        line-height: 1.4;
    }
    
    .leader-card .nationality {
        color: #3498db;
        font-size: 12px;
        font-style: italic;
        margin-top: 8px;
    }
    
    /* Services section */
    .services-section {
        padding: 50px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-card {
        background: white;
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s ease;
        border: 1px solid rgba(52, 152, 219, 0.1);
    }
    
    .service-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3498db, #2980b9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
    }
    
    .service-icon i {
        font-size: 20px;
        color: white;
    }
    
    .service-card h3 {
        font-size: 16px;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .service-card p {
        font-size: 13px;
        color: #5a6c7d;
        line-height: 1.5;
        margin: 0;
    }
    
    /* Reviews section */
    .reviews-section {
        padding: 50px 0;
        background: #f8f9fa;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .review-card {
        background: white;
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        border-left: 4px solid #f39c12;
    }
    
    .review-rating {
        color: #f39c12;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .review-text {
        font-size: 14px;
        color: #5a6c7d;
        line-height: 1.5;
        margin-bottom: 15px;
        font-style: italic;
    }
    
    .review-author {
        font-size: 13px;
        color: #2c3e50;
        font-weight: 600;
    }
    
    /* Contact section */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-form-container,
    .contact-info-container {
        width: 100%;
    }
    
    .contact-form {
        background: white;
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 500;
        color: #2c3e50;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        transition: border-color 0.3s ease;
        background: #f8f9fa;
        color: #2c3e50;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #3498db;
        background: white;
    }
    
    .submit-btn {
        width: 100%;
        padding: 16px;
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
    }
    
    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    }
    
    /* Footer */
    .footer {
        background: #2c3e50;
        color: white;
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .footer-brand p {
        font-size: 13px;
        color: #bdc3c7;
        line-height: 1.5;
    }
    
    /* Section headers */
    .section-header {
        text-align: center;
        margin-bottom: 35px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 15px;
        color: #5a6c7d;
        line-height: 1.6;
        max-width: 95%;
        margin: 0 auto;
    }
    
    /* General improvements */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Typography */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    p {
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    /* Utility classes */
    .text-center {
        text-align: center;
    }
    
    .mb-20 {
        margin-bottom: 20px;
    }
    
    .mt-20 {
        margin-top: 20px;
    }
}
