/* Cargomindset Landing Page Styles */

:root {
    --primary-navy: #0d1b2a;
    --accent-blue: #0077b6;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Navbar Styling */
.navbar {
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--primary-navy) !important;
    margin: 0 15px;
}

.btn-login {
    background-color: var(--primary-navy);
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 120px;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.7)), 
                url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.tracking-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

/* Stats Section */
.stat-card {
    border: none;
    padding: 40px 20px;
    background: white;
    border-bottom: 4px solid var(--accent-blue);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section */
.service-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.service-card {
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

/* Footer */
footer {
    background-color: var(--primary-navy);
    color: #aaa;
    padding: 80px 0 30px;
}

footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

.footer-logo img {
    height: 35px;
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-link {
        margin: 10px 0;
    }
}

/* Tracking Widest */
.tracking-widest {
    letter-spacing: 0.15em;
}

/* Text Utilities */
.text-info {
    color: #00d4ff !important;
}

.opacity-75 {
    opacity: 0.75;
}

/* CTA Section */
.bg-light {
    background-color: var(--light-gray) !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-secondary {
    border-color: #6c757d !important;
}

/* Button Styles */
.btn-primary {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.btn-primary:hover {
    background-color: #005f8a;
    border-color: #005f8a;
}

.btn-outline-dark {
    color: #212529;
    border-color: #212529;
}

.btn-outline-dark:hover {
    background-color: #212529;
    color: white;
}

/* Spacing Utilities */
.mt-n5 {
    margin-top: -3rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

/* Social Icons */
footer .fab {
    font-size: 1.2rem;
}

/* Small Text */
small {
    font-size: 0.875rem;
}

/* Smooth Transitions */
* {
    transition: all 0.2s ease-in-out;
}

a, button {
    cursor: pointer;
}
