/* Rental Terms Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color, #ea580c));
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header__title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Rental Content */
.rental-content {
    padding: 60px 0;
}

.rental-grid {
    display: grid;
    gap: 30px;
}

/* Rental Card */
.rental-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rental-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color, #ea580c));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.rental-card__icon i {
    font-size: 32px;
    color: white;
}

.rental-card--warning .rental-card__icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.rental-card__title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 20px;
}

.rental-card__content {
    color: #4b5563;
    line-height: 1.8;
}

.rental-card__content p {
    margin-bottom: 16px;
}

.rental-card__content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.rental-card__content li {
    padding: 8px 0 8px 28px;
    position: relative;
}

.rental-card__content li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Steps styling */
.rental-steps {
    counter-reset: step;
}

.rental-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.rental-step__number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.rental-step__content {
    flex: 1;
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.map {
    width: 100%;
    height: 400px;
    background: #e5e7eb;
}

.map-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.map-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
}

.map-info i {
    color: var(--primary-color);
}

/* CTA Buttons */
.cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn--outline-white:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header__title {
        font-size: 2rem;
    }
    
    .rental-card {
        padding: 24px;
    }
    
    .rental-card__icon {
        width: 56px;
        height: 56px;
    }
    
    .rental-card__icon i {
        font-size: 24px;
    }
    
    .map {
        height: 300px;
    }
    
    .map-info {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}


/* Tabs Navigation */
.info-tabs {
    padding-top: 40px;
}

.tabs-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    background: #f3f4f6;
    padding: 8px;
    border-radius: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile tabs */
@media (max-width: 576px) {
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 12px 16px;
    }
}
