/* ============================================
   STYLE.CSS - logistra STYLE TEMPLATE
   Complete Styling for Landing Page
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: #172B4D;
    line-height: 1.6;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


    /* Navbar */
        .navbar {
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        /* Logo */
        .logo {
            width: auto;
            height: 38px;
        }

        .logo-icon {
            width: auto;
            height: 32px;
        }

        /* Nav Menu */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            color: #172B4D;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            border-radius: 6px;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .nav-link:hover {
            background: #F4F5F7;
            color: #0052CC;
        }

        .nav-link.active {
            background: #E9F2FF;
            color: #0052CC;
        }

        .chevron {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .nav-item:hover .chevron {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            min-width: 280px;
            margin-top: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 12px;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-section {
            padding: 8px 0;
        }

        .dropdown-title {
            font-size: 12px;
            font-weight: 600;
            color: #5E6C84;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 12px;
            margin-bottom: 4px;
        }

        .dropdown-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px;
            border-radius: 8px;
            text-decoration: none;
            color: #172B4D;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background: #F4F5F7;
        }

        .dropdown-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: #E9F2FF;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0052CC;
        }

        .dropdown-content {
            flex: 1;
        }

        .dropdown-item-title {
            font-size: 15px;
            font-weight: 600;
            color: #172B4D;
            margin-bottom: 4px;
        }

        .dropdown-item-desc {
            font-size: 13px;
            color: #5E6C84;
            line-height: 1.4;
        }

        .dropdown-divider {
            height: 1px;
            background: #E0E0E0;
            margin: 8px 0;
        }

        /* Search & Actions */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .search-btn {
            width: 40px;
            height: 40px;
            background: #F4F5F7;
            border: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #172B4D;
            transition: all 0.2s ease;
        }

        .search-btn:hover {
            background: #E9F2FF;
            color: #0052CC;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            width: 40px;
            height: 40px;
            background: #F4F5F7;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            color: #172B4D;
        }

        /* Mega Menu (for More +) */
        .mega-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            width: 600px;
            margin-top: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 24px;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .mega-menu-column {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
            }

            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .nav-container {
                padding: 0 20px;
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background: white;
            border-top: 1px solid #E0E0E0;
            padding: 16px;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav-item {
            margin-bottom: 8px;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: #F4F5F7;
            border-radius: 8px;
            text-decoration: none;
            color: #172B4D;
            font-weight: 500;
        }

        .mobile-dropdown {
            display: none;
            padding: 12px 0 12px 16px;
        }

        .mobile-dropdown.active {
            display: block;
        }

        .mobile-dropdown-item {
            display: block;
            padding: 10px 16px;
            color: #5E6C84;
            text-decoration: none;
            border-radius: 6px;
            margin-bottom: 4px;
        }

        .mobile-dropdown-item:hover {
            background: #F4F5F7;
            color: #172B4D;
        }
        /* ---------------------------------------------------------------------- */
/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F7F8F9 100%);
    text-align: center;
}

.hero-badge {
    margin-bottom: 24px;
}

.badge-text {
    display: inline-block;
    padding: 6px 16px;
    background: #E9F2FF;
    color: #0052CC;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: 52px;
    font-weight: 600;
    color: #172B4D;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: #42526E;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    margin-bottom: 60px;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #0052CC 0%, #0065FF 100%);
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 82, 204, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background: #FFFFFF;
    color: #0052CC;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #0052CC;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #F4F5F7;
    transform: translateY(-2px);
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #0052CC 0%, #0065FF 100%);
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 82, 204, 0.4);
}

.btn-secondary-large {
    display: inline-block;
    padding: 16px 40px;
    background: #FFFFFF;
    color: #0052CC;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #0052CC;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-secondary-large:hover {
    background: #F4F5F7;
    transform: translateY(-2px);
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.image-placeholder {
    background: #F4F5F7;
    border: 2px dashed #C1C7D0;
    border-radius: 8px;
    padding: 80px 20px;
    text-align: center;
    color: #6B778C;
    font-size: 14px;
    font-weight: 500;
}

.logo-placeholder {
    background: #F4F5F7;
    border: 1px solid #EBECF0;
    border-radius: 4px;
    padding: 20px 30px;
    color: #6B778C;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
}

.icon-placeholder {
    width: 100%;
    height: 100%;
    background: #F4F5F7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B778C;
    font-size: 11px;
    font-weight: 500;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
}

/* ============================================
   TRUSTED BY SECTION
   ============================================ */
.trusted-section {
    padding: 60px 0;
    background: #FFFFFF;
    border-top: 1px solid #EBECF0;
    border-bottom: 1px solid #EBECF0;
}

.trusted-text {
    text-align: center;
    color: #6B778C;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: #42526E;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #EBECF0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(9, 30, 66, 0.12);
    transform: translateY(-4px);
    border-color: #C1C7D0;
}

.feature-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-image .image-placeholder {
    height: 100%;
    padding: 60px 20px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #EBECF0;
}

.feature-content {
    padding: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 16px;
    color: #42526E;
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-link {
    color: #0052CC;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.feature-link:hover {
    color: #0065FF;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0052CC 0%, #0065FF 100%);
    color: white;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-size: 80px;
    font-family: Georgia, serif;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   INTEGRATION SECTION
   ============================================ */
.integration-section {
    padding: 100px 0;
    background: #F7F8F9;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.integration-card {
    background: #FFFFFF;
    border: 1px solid #EBECF0;
    border-radius: 3px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.integration-card:hover {
    box-shadow: 0 4px 12px rgba(9, 30, 66, 0.08);
    transform: translateY(-2px);
    border-color: #C1C7D0;
}

.integration-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
}

.integration-name {
    font-size: 14px;
    font-weight: 600;
    color: #172B4D;
}

.integration-cta {
    text-align: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: #FFFFFF;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-text {
    font-size: 18px;
    color: #42526E;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #172B4D;
    color: #f6f6f6;
    padding: 80px 20px 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
    color: #f6f6f6;
}

.footer-logo .brand {
    font-size: 24px;
    font-weight: bold;
    color: #f6f6f6;
}

.footer-tagline {
    color: #f6f6f6;
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6f6f6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #5865f2;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #f6f6f6;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #f6f6f6;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f6f6f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #f6f6f6;
}

.footer-language {
    display: flex;
    align-items: center;
}

.language-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f6f6f6;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.15);
}

.language-selector svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .integration-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-items {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .testimonial-quote {
        font-size: 20px;
    }

    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }

    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .features-section,
    .integration-section,
    .cta-section,
    .testimonial-section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .integration-grid {
        grid-template-columns: 1fr;
    }

    .logo-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
.dropdown-inner::-webkit-scrollbar {
    width: 8px;
}

.dropdown-inner::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-inner::-webkit-scrollbar-thumb {
    background: #C1C7D0;
    border-radius: 4px;
}

.dropdown-inner::-webkit-scrollbar-thumb:hover {
    background: #A5ADBA;
}

/* ============================================
   FOCUS STATES (ACCESSIBILITY)
   ============================================ */
.nav-button:focus,
.mobile-button:focus,
.btn-primary:focus,
.btn-secondary:focus,
.btn-primary-large:focus,
.btn-secondary-large:focus {
    outline: 2px solid #0052CC;
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .main-nav,
    .footer,
    .cta-section {
        display: none;
    }
    
    body {
        color: #000;
    }
}