/* ===================================================
   GAGGLES LOGISTICS - INTERNATIONAL MODERNIZATION CSS
   =================================================== */

:root {
    --gaggles-primary: #f26522;
    --gaggles-secondary: #0b1c39;
    --gaggles-accent: #25d366;
    --gaggles-dark: #071324;
    --gaggles-light: #f8faff;
    --gaggles-border: #e2e8f0;
}

/* Trust Accreditation Banner */
.trust-badge-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 24px 30px;
    margin-top: -45px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--gaggles-border);
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(242, 101, 34, 0.1);
    color: var(--gaggles-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Modern Multi-Tab Tracking Card */
.tracking-card-modern {
    background: rgba(11, 28, 57, 0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.tracking-tabs .nav-link {
    color: #ffffff;
    font-weight: 600;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}
.tracking-tabs .nav-link.active {
    background: var(--gaggles-primary);
    color: #ffffff;
}

/* Corridor Map Styling */
.corridor-card {
    background: #ffffff;
    border: 1px solid var(--gaggles-border);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
    height: 100%;
}
.corridor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--gaggles-primary);
}
.corridor-badge {
    background: #eef2ff;
    color: var(--gaggles-secondary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Quote Calculator Styling */
.quote-box-modern {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
    padding: 35px;
    border: 1px solid var(--gaggles-border);
}

/* Floating Smart WhatsApp Widget */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}
.whatsapp-main-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-main-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
}
.whatsapp-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}
@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Accreditation Logos Bar */
.accreditation-logo-item {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    max-height: 50px;
}
.accreditation-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}
