/* info.css */
.content {
    background-color: rgb(245, 245, 245);
    min-height: 100vh;
}

.info-header {
    padding: 2rem 0;
}

.info-header h1 {
    color: #333;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.line-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e83e8c, transparent);
    margin: 1rem auto;
}

/* Sidebar Styles */
.info-sidebar {
    top: 100px;
}

.info-sidebar .nav-link {
    color: #666;
    padding: 1rem 1.5rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.info-sidebar .nav-link:hover,
.info-sidebar .nav-link.active {
    color: #333;
    border-left-color: #e83e8c;
    background-color: white;
}

.info-sidebar .nav-link i {
    width: 20px;
}

/* Section Styles */
.info-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.section-title {
    color: #333;
    font-weight: 400;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.section-title i {
    color: #e83e8c;
}

/* Value Cards */
.value-card {
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2rem;
    color: #e83e8c;
    margin-bottom: 1rem;
}

.value-card h5 {
    color: #333;
    margin-bottom: 1rem;
}

/* Delivery & Payment Cards */
.delivery-card,
.payment-card,
.tip-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e83e8c;
}

.delivery-card h5,
.payment-card h5,
.tip-card h5 {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Process Steps */
.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e83e8c;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    background: #e83e8c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h6 {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Conditions List */
.conditions-list {
    margin: 1rem 0;
}

.condition-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* Process List */
.process-list {
    padding-left: 1.5rem;
}

.process-list li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Contact Styles */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 0.2rem;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.75rem;
}

.contact-form .form-control:focus {
    border-color: #e83e8c;
    box-shadow: 0 0 0 0.2rem rgba(232, 62, 140, 0.25);
}

/* Security Badges */
.security-badge {
    height: 40px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-sidebar {
        position: static !important;
        margin-bottom: 2rem;
    }
    
    .info-sidebar .nav {
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .info-sidebar .nav-link {
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }
    
    .info-sidebar .nav-link.active {
        border-left: none;
        border-bottom-color: #e83e8c;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .info-section {
        padding: 1.5rem;
    }
    
    .value-card {
        margin-bottom: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}