/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --logoBlue: #005b9e;
    --primary: #2586c5;
    --primaryHover: #007dc1;
    --white: #ffffff;
    --lightGray: #f8f9fa;
    --darkGray: #6c757d;
    --gradient: linear-gradient(135deg, var(--logoBlue) 0%, var(--primary) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
}

.wrapper {
        position: relative;
        top: 0;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        z-index: 1;
    }
    .sticky_layer{
        justify-content: center;
        align-items: center;
        height: 100vh;

    }
    .video-container{
        width: 100%;
        height: 100vh;
        position: absolute;
        overflow: hidden;
    }
    video{
        object-fit: cover;
        z-index: -100;
        background-position: 50%;
        background-size: cover;
        width: 100%;
        height: 100%;
        margin: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
    }
    .zoom{
        flex-direction: column;
        justify-content: center;
        display: flex;
        position: relative;
        height:100vh;
        align-items:center;
    }
    .svg {
        width: 100%;
        position: relative;
        /* Restore the box-shadow that creates the mask effect */
        box-shadow: inset 0 0 0 2px #eef7ff, 0 0 0 50vw #eff7ff;
    }

    /* Text mask styling for KLEVER CARGO */
    .text-mask {
        position: relative;
        text-align: center;
        /* Create white overlay everywhere */
        box-shadow: 0 0 0 100vw white;
    }

    .mask-text {
        font-family: Arial Black, sans-serif;
        font-size: 8rem;
        font-weight: 900;
        line-height: 0.9;
        margin: 0;
        color: transparent;
        /* Key: Use mix-blend-mode to create cutout effect */
        mix-blend-mode: multiply;
        background: white;
    }

    .newpage{
        position: relative;
        padding-top:0 !important;
    }
    .bgchange{
        height:350px;
        display: flex;
        align-items:center;
        justify-content:center;
        color: white;
        font-size:30px;
        border-top:2px solid yellow;
    }
    footer{
        display: none;
    }
    #enter{
        position: absolute;
        right: 0;
        bottom:0;
        opacity: 0;
    }

    /* Scroll Down Indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        color: black;
        z-index: 1000;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .scroll-indicator:hover {
        transform: translateX(-50%) translateY(-5px);
    }

    .scroll-text {
        font-size: 12px;
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 15px;
        opacity: 0.9;
        font-family: 'Arial', sans-serif;
        color: black;
    }

    .scroll-arrow {
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: bounce 2s infinite;
    }

    .scroll-line {
        width: 1px;
        height: 30px;
        background-color: black;
        margin-bottom: 5px;
    }

    .scroll-arrow svg {
        width: 16px;
        height: 16px;
        color: black;
    }

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

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .wrapper {
        overflow: hidden;
    }
    
    .video-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;
    }
    
    video {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        object-position: center;
        position: fixed;
        top: 0;
        left: 0;
        transform: none;
        min-width: 100vw;
        min-height: 100vh;
    }
    
    .zoom {
        height: 100vh;
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
    }
    
    .svg {
        width: 90vw;
        max-width: 90vw;
        height: auto;
        /* Full viewport masking for mobile - use vh units for full coverage */
        box-shadow: inset 0 0 0 2px #eef7ff, 0 0 0 100vh #eff7ff;
        position: relative;
        z-index: 2;
    }
    
    .scroll-indicator {
        bottom: 20px;
        z-index: 1000;
    }
    
    .scroll-text {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .scroll-line {
        height: 25px;
    }
}

@media screen and (max-width: 480px) {
    .svg {
        width: 95vw;
        max-width: 95vw;
        /* Ensure full coverage on small screens too */
        box-shadow: inset 0 0 0 2px #eef7ff, 0 0 0 100vh #eff7ff;
    }
    
    .container {
        padding: 0 15px;
    }
    }

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

/* KleverCargo Content Sections *//* Hero Intro Section */
.hero-intro {
    background: var(--gradient);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.intro-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

/* Feature Sections - Modern Design */
.feature-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.feature-section:nth-child(odd) {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4ff 100%);
}

.feature-section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 134, 197, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 91, 158, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

.feature-content.reverse {
    direction: rtl;
}

.feature-content.reverse > * {
    direction: ltr;
}

.feature-text {
    position: relative;
}

.feature-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -30px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primaryHover));
    border-radius: 2px;
}

.feature-text h2 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, var(--logoBlue) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
}

.feature-text > p {
    font-size: 1.3rem;
    color: var(--darkGray);
    margin-bottom: 50px;
    line-height: 1.8;
    opacity: 0.9;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(37, 134, 197, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primaryHover));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(15px) translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(37, 134, 197, 0.1),
        0 10px 20px rgba(0, 91, 158, 0.05);
    border-color: rgba(37, 134, 197, 0.2);
}

.benefit-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 134, 197, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.benefit-item span {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c3e50;
    font-weight: 500;
}

.feature-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image > img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.5s ease;
}

.feature-image:hover > img {
    transform: scale(1.05);
}

/* Transport Hub Animation - Dynamic Responsive */
.transport-hub-animation {
    position: relative;
    width: min(80vw, 80vh, 600px);
    height: min(80vw, 80vh, 600px);
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.hub-center {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, var(--primary), var(--primaryHover));
    width: clamp(80px, 20vw, 150px);
    height: clamp(80px, 20vw, 150px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.3),
        0 10px 30px rgba(37, 134, 197, 0.3);
    animation: pulse 4s ease-in-out infinite;
}

.center-text {
    font-size: clamp(0.6rem, 1.5vw, 1rem);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orbit-container {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 1px solid rgba(37, 134, 197, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.orbit-icon {
    position: absolute;
    width: clamp(50px, 10vw, 80px);
    height: clamp(50px, 10vw, 80px);
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 2.4rem);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(37, 134, 197, 0.1);
    transition: all 0.3s ease;
    transform-origin: center center;
    z-index: 5;
}

/* Position each orbit container at different initial rotations and animate them */
.orbit-1 {
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotate1 25s linear infinite;
}

.orbit-2 {
    transform: translate(-50%, -50%) rotate(72deg);
    animation: rotate2 25s linear infinite;
}

.orbit-3 {
    transform: translate(-50%, -50%) rotate(144deg);
    animation: rotate3 25s linear infinite;
}

.orbit-4 {
    transform: translate(-50%, -50%) rotate(216deg);
    animation: rotate4 25s linear infinite;
}

.orbit-5 {
    transform: translate(-50%, -50%) rotate(288deg);
    animation: rotate5 25s linear infinite;
}

/* Position icons with counter-rotations - Responsive */
.orbit-1 .orbit-icon,
.orbit-2 .orbit-icon,
.orbit-3 .orbit-icon,
.orbit-4 .orbit-icon,
.orbit-5 .orbit-icon {
    top: calc(-1 * clamp(25px, 5vw, 40px));
    left: calc(50% - clamp(25px, 5vw, 40px));
}

.orbit-1 .orbit-icon { animation: counter-rotate1 25s linear infinite; }
.orbit-2 .orbit-icon { animation: counter-rotate2 25s linear infinite; }
.orbit-3 .orbit-icon { animation: counter-rotate3 25s linear infinite; }
.orbit-4 .orbit-icon { animation: counter-rotate4 25s linear infinite; }
.orbit-5 .orbit-icon { animation: counter-rotate5 25s linear infinite; }

.orbit-icon:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

/* Keyframes - Responsive System */
@keyframes rotate1 { 
    from { transform: translate(-50%, -50%) rotate(0deg); } 
    to { transform: translate(-50%, -50%) rotate(360deg); } 
}
@keyframes rotate2 { 
    from { transform: translate(-50%, -50%) rotate(72deg); } 
    to { transform: translate(-50%, -50%) rotate(432deg); } 
}
@keyframes rotate3 { 
    from { transform: translate(-50%, -50%) rotate(144deg); } 
    to { transform: translate(-50%, -50%) rotate(504deg); } 
}
@keyframes rotate4 { 
    from { transform: translate(-50%, -50%) rotate(216deg); } 
    to { transform: translate(-50%, -50%) rotate(576deg); } 
}
@keyframes rotate5 { 
    from { transform: translate(-50%, -50%) rotate(288deg); } 
    to { transform: translate(-50%, -50%) rotate(648deg); } 
}

@keyframes counter-rotate1 { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes counter-rotate2 { from { transform: rotate(-72deg); } to { transform: rotate(-432deg); } }
@keyframes counter-rotate3 { from { transform: rotate(-144deg); } to { transform: rotate(-504deg); } }
@keyframes counter-rotate4 { from { transform: rotate(-216deg); } to { transform: rotate(-576deg); } }
@keyframes counter-rotate5 { from { transform: rotate(-288deg); } to { transform: rotate(-648deg); } }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 0 2px rgba(255, 255, 255, 0.3),
            0 10px 30px rgba(37, 134, 197, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 0 2px rgba(255, 255, 255, 0.5),
            0 15px 40px rgba(37, 134, 197, 0.4);
    }
}

/* Benefits Section */
.benefits-section {
    background: var(--gradient);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.benefits-section h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Mobile Responsive for New Sections */
@media screen and (max-width: 768px) {
    .intro-text h1 {
        font-size: 2.5rem;
    }

    .intro-text p {
        font-size: 1.1rem;
    }

    .feature-section {
        padding: 80px 0;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        min-height: auto;
    }

    .feature-content.reverse {
        direction: ltr;
    }

    .feature-text::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-text h2 {
        font-size: 2.5rem;
    }

    .feature-text > p {
        font-size: 1.2rem;
    }

    .benefit-item {
        padding: 20px;
        gap: 15px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }

    .benefit-item span {
        font-size: 1.1rem;
    }

    .feature-image > img {
        height: 300px;
    }

    .benefits-section h2 {
        font-size: 2.2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Transport Hub Mobile Responsive - Dynamic */
    .transport-hub-animation {
        width: min(90vw, 400px);
        height: min(90vw, 400px);
        min-width: 280px;
        min-height: 280px;
    }

    .feature-section, .hero-intro, .benefits-section {
        padding: 60px 0;
    }
}

/* Transport Requests Dashboard */
.requests-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.requests-layout.reverse {
  grid-template-columns: 2fr 1fr;
}

.requests-dashboard {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 
    0 20px 40px rgba(37, 134, 197, 0.08),
    0 10px 20px rgba(0, 91, 158, 0.04);
  border: 1px solid rgba(37, 134, 197, 0.08);
  backdrop-filter: blur(10px);
}

.requests-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(37, 134, 197, 0.1);
}

.requests-header h3 {
  font-size: 1.8rem;
  color: var(--logoBlue);
  margin-bottom: 10px;
  font-weight: 700;
}

.requests-info {
  color: var(--darkGray);
  font-size: 0.95rem;
}

.requests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.request-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 2px solid rgba(37, 134, 197, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.request-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 134, 197, 0.15);
}

.request-card.hot {
  border-color: #ff6b35;
  background: linear-gradient(135deg, #fff 0%, #fff8f6 100%);
}

.request-card.urgent {
  border-color: #dc3545;
  background: linear-gradient(135deg, #fff 0%, #fef6f6 100%);
}

.request-card.awarded {
  border-color: #28a745;
  background: linear-gradient(135deg, #fff 0%, #f6fef8 100%);
}

.request-card.private {
  border-color: #6f42c1;
  background: linear-gradient(135deg, #fff 0%, #f8f6fe 100%);
}

.request-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.request-type {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.type-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.type-badge.public {
  background: rgba(37, 134, 197, 0.1);
  color: var(--primary);
}

.type-badge.private {
  background: rgba(111, 66, 193, 0.1);
  color: #6f42c1;
}

.urgency-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.urgency-badge.hot {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
}

.urgency-badge.urgent {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.urgency-badge.normal {
  background: rgba(108, 117, 125, 0.1);
  color: var(--darkGray);
}

.status-badge.awarded {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.request-id {
  font-size: 0.85rem;
  color: var(--darkGray);
  font-family: 'Courier New', monospace;
}

.request-details h4 {
  font-size: 1.2rem;
  color: var(--logoBlue);
  margin-bottom: 12px;
  font-weight: 700;
}

.cargo-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.cargo-item, .cargo-weight {
  font-size: 0.9rem;
  color: #555;
}

.cargo-item {
  font-weight: 600;
}

.timing {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.pickup, .delivery {
  font-size: 0.85rem;
  color: var(--darkGray);
}

.bidding-status {
  margin-bottom: 16px;
}

.bid-count {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.bid-count strong {
  color: var(--logoBlue);
  font-size: 0.95rem;
}

.price-range {
  font-size: 0.85rem;
  color: var(--darkGray);
}

.winner-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.winner-info strong {
  color: #28a745;
  font-size: 0.95rem;
}

.winning-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--logoBlue);
}

.bid-actions {
  display: flex;
  gap: 8px;
}

.bid-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
}

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

.bid-btn.primary:hover {
  background: var(--primaryHover);
}

.bid-btn.secondary {
  background: rgba(37, 134, 197, 0.1);
  color: var(--primary);
}

.bid-btn.secondary:hover {
  background: rgba(37, 134, 197, 0.2);
}

.bid-btn.urgent {
  background: #dc3545;
  color: white;
}

.bid-btn.urgent:hover {
  background: #c82333;
}

.request-footer {
  border-top: 1px solid rgba(37, 134, 197, 0.1);
  padding-top: 12px;
  font-size: 0.85rem;
  color: var(--darkGray);
}

.expires {
  font-weight: 500;
}

.awarded-time {
  color: #28a745;
  font-weight: 500;
}

.requests-summary {
  background: rgba(37, 134, 197, 0.05);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(37, 134, 197, 0.1);
}

.requests-summary .summary-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.requests-summary .summary-item {
  font-size: 0.9rem;
  color: #555;
}

.requests-summary .summary-item strong {
  color: var(--logoBlue);
}

/* Responsive Design for Requests */
@media (max-width: 1024px) {
  .requests-layout {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  
  .requests-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .requests-dashboard {
    padding: 24px;
  }
  
  .request-card {
    padding: 20px;
  }
  
  .bid-actions {
    flex-direction: column;
  }
  
  .request-type {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .requests-dashboard {
    padding: 20px;
  }
  
  .request-card {
    padding: 16px;
  }
  
  .requests-header h3 {
    font-size: 1.4rem;
  }
}

/* Price Comparison Table */
.price-comparison-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.agreements-layout.reverse {
  grid-template-columns: 2fr 1fr;
}

.price-comparison-table {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 
    0 20px 40px rgba(37, 134, 197, 0.08),
    0 10px 20px rgba(0, 91, 158, 0.04);
  border: 1px solid rgba(37, 134, 197, 0.08);
  backdrop-filter: blur(10px);
}

.table-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(37, 134, 197, 0.1);
}

.table-header h3 {
  font-size: 1.8rem;
  color: var(--logoBlue);
  margin-bottom: 10px;
  font-weight: 700;
}

.cargo-info {
  color: var(--darkGray);
  font-size: 1.1rem;
  font-weight: 500;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.transport-section h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  color: var(--logoBlue);
  margin-bottom: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(37, 134, 197, 0.2);
}

.transport-icon {
  font-size: 1.6rem;
}

.quote-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  border: 2px solid rgba(37, 134, 197, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease;
}

.quote-card.recommended {
  border-color: #22c55e;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.quote-card.recommended::before {
  background: #22c55e;
}

.quote-card.delayed {
  border-color: #ef4444;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.quote-card.delayed::before {
  background: #ef4444;
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 24px rgba(37, 134, 197, 0.12),
    0 6px 12px rgba(0, 91, 158, 0.08);
}

.quote-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.carrier {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--logoBlue);
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.green {
  background: #dcfce7;
  color: #166534;
}

.status-badge.red {
  background: #fee2e2;
  color: #991b1b;
}

.status-badge.yellow {
  background: #fef3c7;
  color: #92400e;
}

.status-badge.blue {
  background: #dbeafe;
  color: #1e40af;
}

.status-badge.orange {
  background: #fed7aa;
  color: #c2410c;
}

.status-badge.gray {
  background: #f3f4f6;
  color: #6b7280;
}

.quote-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--logoBlue);
  margin-bottom: 4px;
}

.delivery {
  color: var(--darkGray);
  font-size: 1rem;
  font-weight: 500;
}

.savings {
  color: #22c55e;
  font-weight: 600;
  font-size: 0.95rem;
}

.premium {
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.95rem;
}

.warning {
  color: #ef4444;
  font-weight: 600;
  font-size: 0.95rem;
}

.comparison-summary {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4ff 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(37, 134, 197, 0.1);
}

.summary-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 1rem;
  color: #374151;
}

.summary-item:not(:last-child) {
  border-bottom: 1px solid rgba(37, 134, 197, 0.1);
}

.summary-item strong {
  color: var(--logoBlue);
  margin-right: 8px;
  min-width: 120px;
}

/* Mobile Responsive for Price Comparison */
@media screen and (max-width: 1024px) {
  .price-comparison-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .price-comparison-table {
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .price-comparison-layout {
    gap: 30px;
  }
  
  .price-comparison-table {
    padding: 24px;
  }
  
  .table-header h3 {
    font-size: 1.5rem;
  }
  
  .cargo-info {
    font-size: 1rem;
  }
  
  .quote-card {
    padding: 20px;
  }
  
  .price {
    font-size: 1.6rem;
  }
  
  .transport-section h4 {
    font-size: 1.2rem;
  }
  
  .summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .summary-item strong {
    min-width: auto;
    margin-right: 0;
  }
}

/* Time Slot Management Dashboard */
.timeslot-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.network-layout.reverse {
  grid-template-columns: 2fr 1fr;
}

.timeslot-dashboard {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 
    0 20px 40px rgba(37, 134, 197, 0.08),
    0 10px 20px rgba(0, 91, 158, 0.04);
  border: 1px solid rgba(37, 134, 197, 0.08);
  backdrop-filter: blur(10px);
}

.dashboard-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(37, 134, 197, 0.1);
}

.dashboard-header h3 {
  font-size: 1.8rem;
  color: var(--logoBlue);
  margin-bottom: 10px;
  font-weight: 700;
}

.schedule-info {
  color: var(--darkGray);
  font-size: 1.1rem;
  font-weight: 500;
}

.ramps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.ramp-column h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  color: var(--logoBlue);
  margin-bottom: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(37, 134, 197, 0.2);
}

.ramp-icon {
  font-size: 1.4rem;
}

.time-slot {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
  border: 2px solid rgba(37, 134, 197, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.time-slot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease;
}

.time-slot.booked {
  border-color: #22c55e;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.time-slot.booked::before {
  background: #22c55e;
}

.time-slot.urgent {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.time-slot.urgent::before {
  background: #f59e0b;
}

.time-slot.available {
  border-color: #e5e7eb;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.time-slot.available::before {
  background: #e5e7eb;
}

.time-slot:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 16px rgba(37, 134, 197, 0.1),
    0 4px 8px rgba(0, 91, 158, 0.06);
}

.slot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.time {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--logoBlue);
}

.slot-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.transporter {
  font-weight: 600;
  color: #374151;
  font-size: 1rem;
}

.cargo {
  color: var(--darkGray);
  font-size: 0.95rem;
}

.reference {
  color: #9ca3af;
  font-size: 0.85rem;
  font-family: monospace;
}

.schedule-summary {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4ff 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(37, 134, 197, 0.1);
}

.summary-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #374151;
}

.stat-item strong {
  color: var(--logoBlue);
  margin-right: 8px;
  min-width: 120px;
}

/* Mobile Responsive for Time Slot Management */
@media screen and (max-width: 1024px) {
  .timeslot-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ramps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .timeslot-dashboard {
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .timeslot-layout {
    gap: 30px;
  }
  
  .timeslot-dashboard {
    padding: 24px;
  }
  
  .dashboard-header h3 {
    font-size: 1.5rem;
  }
  
  .schedule-info {
    font-size: 1rem;
  }
  
  .time-slot {
    padding: 16px;
  }
  
  .time {
    font-size: 1rem;
  }
  
  .ramp-column h4 {
    font-size: 1.2rem;
  }
  
  .stat-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .stat-item strong {
    min-width: auto;
    margin-right: 0;
  }
}

/* Professional Network Dashboard */
.network-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.network-dashboard {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 
    0 20px 40px rgba(37, 134, 197, 0.08),
    0 10px 20px rgba(0, 91, 158, 0.04);
  border: 1px solid rgba(37, 134, 197, 0.08);
  backdrop-filter: blur(10px);
}

.network-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(37, 134, 197, 0.1);
}

.network-header h3 {
  font-size: 1.8rem;
  color: var(--logoBlue);
  margin-bottom: 10px;
  font-weight: 700;
}

.network-info {
  color: var(--darkGray);
  font-size: 1.1rem;
  font-weight: 500;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 2px solid rgba(37, 134, 197, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease;
}

.contact-card.featured {
  border-color: #22c55e;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.contact-card.featured::before {
  background: #22c55e;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 24px rgba(37, 134, 197, 0.12),
    0 6px 12px rgba(0, 91, 158, 0.08);
}

.company-logo {
  text-align: center;
  margin-bottom: 16px;
}

.logo-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.logo-placeholder.blue { background: var(--primary); }
.logo-placeholder.green { background: #22c55e; }
.logo-placeholder.orange { background: #f59e0b; }
.logo-placeholder.purple { background: #8b5cf6; }

.contact-info {
  text-align: center;
  margin-bottom: 20px;
}

.contact-info h4 {
  font-size: 1.2rem;
  color: var(--logoBlue);
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-role {
  color: var(--darkGray);
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-location {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.contact-stats {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  background: rgba(37, 134, 197, 0.1);
  color: var(--logoBlue);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

.contact-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.action-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.action-btn.primary:hover {
  background: var(--primaryHover);
  transform: translateY(-1px);
}

.action-btn.secondary {
  background: rgba(37, 134, 197, 0.1);
  color: var(--primary);
  border: 1px solid rgba(37, 134, 197, 0.2);
}

.action-btn.secondary:hover {
  background: rgba(37, 134, 197, 0.15);
}

.action-btn.connected {
  background: #22c55e;
  color: white;
}

.action-btn.pending {
  background: #f59e0b;
  color: white;
}

.action-btn.disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}

.connection-status {
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
  font-style: italic;
}

.network-summary {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4ff 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(37, 134, 197, 0.1);
}

.summary-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #374151;
}

.summary-item strong {
  color: var(--logoBlue);
  margin-right: 8px;
  min-width: 140px;
}

/* Mobile Responsive for Professional Network */
@media screen and (max-width: 1024px) {
  .network-layout {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  
  .contacts-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  
  .network-dashboard {
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .network-layout {
    gap: 30px;
  }
  
  .network-dashboard {
    padding: 24px;
  }
  
  .network-header h3 {
    font-size: 1.5rem;
  }
  
  .network-info {
    font-size: 1rem;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  .contact-actions {
    flex-direction: column;
  }
  
  .summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .summary-item strong {
    min-width: auto;
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .network-dashboard {
    padding: 20px;
  }
  
  .network-header h3 {
    font-size: 1.3rem;
  }
  
  .network-info {
    font-size: 0.95rem;
  }
  
  .contact-card {
    padding: 16px;
  }
  
  .logo-placeholder {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Digital Agreements Styles */
.agreements-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: flex-start;
}

.agreements-dashboard {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 91, 158, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 91, 158, 0.1);
}

.agreements-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(0, 91, 158, 0.1);
}

.agreements-header h3 {
  color: #005b9e;
  margin: 0 0 5px 0;
  font-size: 1.4em;
  font-weight: 600;
}

.agreements-info {
  color: #666;
  font-size: 0.9em;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.document-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
}

.document-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 91, 158, 0.15);
}

.document-card.signed {
  border-left: 4px solid #28a745;
}

.document-card.pending {
  border-left: 4px solid #ffc107;
}

.document-card.draft {
  border-left: 4px solid #6c757d;
}

.document-card.expired {
  border-left: 4px solid #dc3545;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.document-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
}

.doc-icon {
  font-size: 1.5em;
  margin-right: 12px;
}

.doc-info {
  flex: 1;
}

.doc-info h4 {
  margin: 0 0 5px 0;
  color: #333;
  font-size: 1.1em;
}

.doc-ref {
  color: #666;
  margin: 0;
  font-size: 0.85em;
  font-family: 'Courier New', monospace;
}

.document-details {
  margin-bottom: 15px;
}

.document-details > div {
  margin-bottom: 5px;
  font-size: 0.9em;
}

.document-details strong {
  color: #333;
}

.doc-party,
.doc-route,
.doc-value,
.doc-date {
  color: #666;
}

.document-actions {
  display: flex;
  gap: 8px;
}

.doc-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  font-size: 0.85em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
}

.doc-btn.primary {
  background: #005b9e;
  color: white;
}

.doc-btn.primary:hover {
  background: #004a82;
}

.doc-btn.secondary {
  background: #f8f9fa;
  color: #666;
  border: 1px solid #ddd;
}

.doc-btn.secondary:hover {
  background: #e9ecef;
}

.doc-btn.view {
  background: #17a2b8;
  color: white;
}

.doc-btn.view:hover {
  background: #138496;
}

.doc-btn.download {
  background: #28a745;
  color: white;
}

.doc-btn.download:hover {
  background: #218838;
}

.doc-btn.edit {
  background: #ffc107;
  color: #333;
}

.doc-btn.edit:hover {
  background: #e0a800;
}

.doc-btn.archive {
  background: #6c757d;
  color: white;
}

.doc-btn.archive:hover {
  background: #5a6268;
}

.agreements-summary {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* Responsive Design for Digital Agreements */
@media screen and (max-width: 1024px) {
  .agreements-layout {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  
  .documents-grid {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 768px) {
  .agreements-dashboard {
    padding: 25px;
  }
  
  .agreements-header h3 {
    font-size: 1.3rem;
  }
  
  .document-card {
    padding: 18px;
  }
  
  .document-actions {
    flex-direction: column;
  }
  
  .doc-btn {
    flex: none;
  }
}

@media screen and (max-width: 480px) {
  .agreements-dashboard {
    padding: 20px;
  }
  
  .agreements-header h3 {
    font-size: 1.2rem;
  }
  
  .agreements-info {
    font-size: 0.95rem;
  }
  
  .document-card {
    padding: 16px;
  }
  
  .doc-info h4 {
    font-size: 1rem;
  }
  
  .doc-ref {
    font-size: 0.8rem;
  }
}

/* RFQ Styles */
.rfq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: flex-start;
}

.rfq-layout.reverse {
  grid-template-columns: 2fr 1fr;
}

.rfq-dashboard {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 91, 158, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 91, 158, 0.1);
}

.rfq-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(0, 91, 158, 0.1);
}

.rfq-header h3 {
  color: #005b9e;
  margin: 0 0 5px 0;
  font-size: 1.4em;
  font-weight: 600;
}

.rfq-info {
  color: #666;
  font-size: 0.9em;
}

.cargo-summary {
  background: #f8fbff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 91, 158, 0.1);
}

.cargo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.cargo-item:last-child {
  border-bottom: none;
}

.cargo-name {
  font-weight: 500;
  color: #333;
}

.cargo-specs {
  color: #666;
  font-size: 0.9em;
}

.cargo-total {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 2px solid rgba(0, 91, 158, 0.2);
  text-align: center;
  color: #005b9e;
}

.container-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.container-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
}

.container-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 91, 158, 0.15);
}

.container-card.recommended {
  border-color: #28a745;
  background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
}

.container-card.not-suitable {
  border-color: #dc3545;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.container-card.alternative {
  border-color: #17a2b8;
  background: linear-gradient(135deg, #f0fdff 0%, #ffffff 100%);
}

.container-card.lcl {
  border-color: #ffc107;
  background: linear-gradient(135deg, #fffef7 0%, #ffffff 100%);
}

.container-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
}

.container-icon {
  font-size: 1.5em;
  margin-right: 12px;
}

.container-info {
  flex: 1;
}

.container-info h4 {
  margin: 0 0 5px 0;
  color: #333;
  font-size: 1.1em;
}

.container-specs {
  color: #666;
  margin: 0;
  font-size: 0.85em;
}

.container-details {
  margin-bottom: 15px;
}

.utilization {
  margin-bottom: 15px;
}

.util-item {
  margin-bottom: 10px;
}

.util-item span:first-child {
  font-size: 0.9em;
  color: #666;
  display: block;
  margin-bottom: 5px;
}

.util-item.critical span:first-child {
  color: #dc3545;
  font-weight: 500;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 5px;
}

.progress {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress.weight {
  background: #28a745;
}

.progress.volume {
  background: #007bff;
}

.progress.overflow {
  background: #dc3545;
  animation: pulse 1.5s infinite;
}

.percentage {
  font-size: 0.8em;
  font-weight: 500;
  color: #333;
}

.shared-info {
  font-size: 0.85em;
  color: #666;
  font-style: italic;
  margin-top: 5px;
}

.pricing {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  font-size: 0.9em;
}

.price-item.total {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
  font-weight: 600;
}

.price {
  font-weight: 600;
  color: #005b9e;
}

.rfq-summary {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Responsive Design for RFQ */
@media screen and (max-width: 1024px) {
  .rfq-layout {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  
  .container-options {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 768px) {
  .rfq-dashboard {
    padding: 25px;
  }
  
  .rfq-header h3 {
    font-size: 1.3rem;
  }
  
  .container-card {
    padding: 18px;
  }
  
  .cargo-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

@media screen and (max-width: 480px) {
  .rfq-dashboard {
    padding: 20px;
  }
  
  .rfq-header h3 {
    font-size: 1.2rem;
  }
  
  .rfq-info {
    font-size: 0.95rem;
  }
  
  .container-card {
    padding: 16px;
  }
  
  .container-info h4 {
    font-size: 1rem;
  }
  
  .container-specs {
    font-size: 0.8rem;
  }
}

/* Floating Demo Button */
.floating-demo-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: var(--gradient);
  border-radius: 60px;
  padding: 16px 24px;
  box-shadow: 
    0 8px 32px rgba(37, 134, 197, 0.3),
    0 4px 16px rgba(0, 91, 158, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: gentle-pulse 3s ease-in-out infinite;
}

.floating-demo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 40px rgba(37, 134, 197, 0.4),
    0 6px 20px rgba(0, 91, 158, 0.3);
}

.demo-btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.demo-btn-text {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.demo-btn-icon {
  font-size: 1.2rem;
  opacity: 0.9;
}

@keyframes gentle-pulse {
  0%, 100% { 
    box-shadow: 
      0 8px 32px rgba(37, 134, 197, 0.3),
      0 4px 16px rgba(0, 91, 158, 0.2);
  }
  50% { 
    box-shadow: 
      0 12px 40px rgba(37, 134, 197, 0.4),
      0 6px 20px rgba(0, 91, 158, 0.3);
  }
}

/* Floating Login Button */
.floating-login-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border-radius: 60px;
  padding: 16px 24px;
  box-shadow: 
    0 8px 32px rgba(44, 62, 80, 0.3),
    0 4px 16px rgba(52, 73, 94, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.floating-login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 40px rgba(44, 62, 80, 0.4),
    0 6px 20px rgba(52, 73, 94, 0.3);
  text-decoration: none;
  color: white;
}

.login-btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.login-btn-text {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.login-btn-icon {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Demo Modal */
.demo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.demo-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px 0;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 24px;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.15),
    0 12px 30px rgba(0, 0, 0, 0.1);
  animation: modal-appear 0.3s ease-out;
  overflow: hidden;
  margin: auto;
}

@keyframes modal-appear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px 20px 40px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
  background: white;
  border-radius: 24px 24px 0 0;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--logoBlue);
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #f5f5f5;
  color: #666;
}

.modal-body {
  padding: 20px 40px 40px 40px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  position: relative;
}

/* Custom scrollbar for modal body */
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--logoBlue), var(--primary));
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary), var(--primaryHover));
}

.modal-body p {
  margin: 0 0 30px 0;
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-weight: 600;
  color: var(--logoBlue);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 134, 197, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Checkbox styling */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 8px;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  z-index: -1;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:focus + .checkmark {
  box-shadow: 0 0 0 3px rgba(37, 134, 197, 0.1);
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  min-width: 120px;
}

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

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 134, 197, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--logoBlue);
  border-color: #e0e0e0;
}

.btn-secondary:hover {
  background: #f8f9fa;
  border-color: var(--primary);
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
  .floating-demo-btn {
    bottom: 20px;
    right: 20px;
    padding: 14px 20px;
  }
  
  .floating-login-btn {
    bottom: 20px;
    left: 20px;
    padding: 14px 20px;
  }
  
  .demo-btn-text,
  .login-btn-text {
    font-size: 0.9rem;
  }
  
  .modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .modal-header,
  .modal-body {
    padding: 20px 25px;
  }
  
  .modal-header h3 {
    font-size: 1.3rem;
  }
  
  /* Fix form layout on mobile */
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* Privacy Policy Styles */
.privacy-link {
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.privacy-link:hover {
  color: var(--primaryHover);
  text-decoration: none;
}

.privacy-modal-content {
  max-width: 700px;
  max-height: 85vh;
}

.privacy-content h4 {
  color: var(--logoBlue);
  margin: 25px 0 15px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.privacy-content h4:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin: 0 0 15px 0;
  line-height: 1.6;
  color: #555;
}

.privacy-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.privacy-content li {
  margin: 8px 0;
  line-height: 1.5;
  color: #555;
}

.privacy-content a {
  color: var(--primary);
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

.privacy-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}